your answer here
your answer here
your answer here
your answer here
your answer here
your answer here
function square(number) {
return number * number;
}
function cube(number) {
return number * square(number);
}
const result = cube(3);
total
LHS
look-ups:your answer here
total
RHS
look-ups:your answer here
your answer here
g = 10;
function foo(a) {
function bar(a, b) {
var c = 5;
function baz(d) {
return d + c + b + a + g;
}
return baz(5);
}
return bar(10, a + 5);
}
var g;
console.log(foo(15));
your answer here
(function foo(x) {
function bar(y) {
function baz(z) {
w = x * y * z;
return x + y + z;
}
return baz(4);
}
return bar(4);
})(4);
console.log(w);
your answer here
your answer here
your answer here
function bar(n) {
return n * m;
var m = 2;
}
console.log(bar(3));
your answer here
function bar(n) {
return n * m;
m = 2;
}
console.log(bar(3));
your answer here
function bar(n) {
m = 2;
return n * m;
}
console.log(bar(3));
your answer here
'use strict';
function bar(n) {
m = 2;
return n * m;
}
console.log(bar(3));
your answer here
function bar(n) {
var m = 2;
return n * m;
}
bar = 5;
console.log(bar(3));
your answer here
var bar;
function bar(n) {
var m = 2;
return n * m;
}
console.log(bar(3));
your answer here
var bar = 3;
function bar(n) {
var m = 2;
return n * m;
}
console.log(bar(3));
your answer here
function bar(n) {
var m = 2;
return n * m;
}
console.log(bar(3));
var bar = 3;
your answer here
var bar = 2;
var bar = 'a';
console.log(bar);
your answer here