@codemovie/code-movie-html

Animation

// How to add two numbers in JS
// How to add two numbers in JS
function add() {}
// How to add two numbers in JS
function add(a, b) {}
// How to add two numbers in JS
function add(a, b) {
  return a + b;
}
// How to add two numbers in JS
function add(a, b) {
  return a + b;
}

console.log(add(1, 2)); // > 3