Skip to content

Instantly share code, notes, and snippets.

Function declaration & Function expression

Q1

console.log(square(5));
function square(n) {
return n*n;
}
  • Error
  • 25

Callbacks

Q1

function greeting(name) {
  console.log('Hello ' + name);
}
function processUserInput(callback) {
  var name = prompt('Please enter your name.');
  // user types in: 'salvatore'
 callback(name);