###Question No : 1. About Undefined & Null: Undefined::::
1. If a variable declare, but value doesn’t set in that variable. then, It’s Undefined. example, let mithu; console.log(mithu) >>> Undefined.
2. If a function isn’t return anything. then It’s Undefined. Example,
function add(num1, num2){
console.log(num1 + num2);
}
console.log(add(13, 26)); >>>…