Test name | Executions per second |
---|---|
#A | 471783776.0 Ops/sec |
#B | 187758.4 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