class & Lambda

Benchmark created on


Test runner

Ready to run.

Testing in
TestOps/sec
class
class Klass {
	test() {
		return 10 + 10;
	}
}
ready
lambda
function createPojo() {
	return {
		test() {
			return 10 + 10;
		}
	}
}
ready

Revisions

You can edit these tests or add more tests to this page by appending /edit to the URL.