JavaScript Interview Questions
JavaScript Interview Questions
JavaScript is a lightweight, interpreted programming language primarily used to create interactive effects
within web browsers.
Example:
var a = 10;
let b = 20;
const c = 30;
Example:
const add = (a, b) => a + b;