🍩Plus (+) operator
let x = 1 + 2; // x is 3
let y = 'Hello' + ' World'; // y is "Hello World"let x = 1;
x += 2; // x is now 3
let y = 'Hello';
y += ' World'; // y is now "Hello World"Last updated
let x = 1 + 2; // x is 3
let y = 'Hello' + ' World'; // y is "Hello World"let x = 1;
x += 2; // x is now 3
let y = 'Hello';
y += ' World'; // y is now "Hello World"Last updated