Run ❯
Get your
own
website
❯
Run Code
Ctrl+Alt+R
Change Orientation
Ctrl+Alt+O
Change Theme
Ctrl+Alt+D
Go to Spaces
Ctrl+Alt+P
// Object const user = { name: 'Alice', age: 25, greet() { console.log(`Hi, I'm ${this.name}`); } }; // Array const colors = ['red', 'green', 'blue']; // Array methods (ES6+) colors.forEach(color => console.log(color)); const lengths = colors.map(color => color.length);
red green blue