ทำความเข้าใจการประกาศฟังก์ชัน, Arrow Function, Default/Rest Parameters และการคืนค่า
function add(a, b) { return a + b;}
const addArrow = (a, b) => a + b;
function greet(name = "Guest") { console.log(`Hello, ${name}!`);}
function logArgs(...args) { console.log(args);}