function add(a, b) {
return a + b;
}
const result = add(5, 3); // The function returns 8, which is stored in 'result'
console.log(result) // Output: 8
view raw add.js hosted with ❤ by GitHub