Test name | Executions per second |
---|---|
#A | 469366720.0 Ops/sec |
#B | 159578.4 Ops/sec |
#C | 473961408.0 Ops/sec |
#D | 20939032.0 Ops/sec |
#E | 535979424.0 Ops/sec |
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.0/jquery.min.js"></script>
$body = $('body');
bodyEl = document.body;
var app = {};
app.getBody = function() {
return $body;
}
app.getBody2 = function() {
return $('body');
}
$body
$('body')
bodyEl
document.body
app.getBody
app.getBody2