Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

Class

  • new
  • class
  • constructor
class MyClass {
    constructor() {
        console.log('object created');
    }
}

function f() {
    const n = new MyClass();
    console.log(n);
}

console.log('before');
f();
console.log('after');