JavaScript Tutorial ✦
Object Creation
Different ways to create objects in JavaScript.
// Object literal
const obj1 = {};
// Constructor function
function Obj() {}
const obj2 = new Obj();
// Class syntax
class MyClass {}
const obj3 = new MyClass();
Different ways to create objects in JavaScript.
// Object literal
const obj1 = {};
// Constructor function
function Obj() {}
const obj2 = new Obj();
// Class syntax
class MyClass {}
const obj3 = new MyClass();