javascript expression

JavaScript
const getRectArea = function(width, height) {
  return width * height;
};

console.log(getRectArea(3, 4));
// expected output: 12
const mul = function(x, y){
    return x * y;
}; //semicolon needs to be there as it is expression

console.log(mul(10, 20));const plantNeedsWater = function(day){
  if (day === 'Wednesday'){
    return true;
  } else{
    return false;
  }
}

console.log(plantNeedsWater('Tuesday'))// EXPRESSION: Code that produces a value
// example(s):
3 + 4
1991
true && false && false

// STATEMENT: Code that performs actions (generally something that ends in ";"
// example:
const str = `String assigned to str`;
Source

Also in JavaScript: