You are reading a single comment by @alexanderbrevig and its replies. Click here to read the full conversation.
  • You might be looking at a deterministic call time for getTime().
    getTime() will be interpreted and then call into c++ code, this will consume some time.

    Try

    var timeNow = getTime();
    console.log(timeNow-timeNow); //you'll get 0 ;)
    
About