Test name | Executions per second |
---|---|
#A | 467602816.0 Ops/sec |
#B | 172580.9 Ops/sec |
#C | 469500064.0 Ops/sec |
#D | 21111216.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