Last Commit: 2024-01-06 17:50:27

views:

Table of Content

V8 Byte Code

Nodejs

// test.js
function bytecodeTest() {
  var a = 1;
}
bytecodeTest();
node --print-bytecode test.js | grep 'generated bytecode for function: bytecodeTest' -A 100

Reference