Toggle navigation
MeasureThat
.net
Create a benchmark
Tools
Feedback
FAQ
Register
Log In
Run results for:
KaiOS this
Go to the benchmark
Embed
Embed Benchmark Result
Run details:
User agent:
Mozilla/5.0 (Mobile; Nokia 8000 4G; rv:48.0) Gecko/48.0 Firefox/48.0 KAIOS/2.5.4.1
Browser:
Firefox Mobile 48
Operating system:
Firefox OS
Device Platform:
Mobile
Date tested:
one year ago
class 2
14.1M/s
class 1
14.1M/s
func
9.3M/s
View exact numbers
Test name
Executions per second
✓
class 2
14,149,844 Ops/sec
class 1
14,108,994 Ops/sec
func
9,344,546 Ops/sec
Script Preparation code:
class A { constructor(x) { this.x = x; } getX() { return this.x } } class B extends A { getX() { return this.x } } var a = new A(1) var b = new B(1) var obj = { x: 1 } function getX(o) { return o.x }
Tests:
class 1
a.getX()
class 2
b.getX()
func
getX(obj)