Variables

// ✅ use const by default (var is not recommended)

let age =22// mutable
const name ="Hen"// immutable (most common)

Functions

Normal function

function add (a, b) {
	return a + b
}

Arrow function

const add = (a, b) => {
	return a + b
}