JS Mini Challenges Week 1
Guess the outputs without executing the code
var foo = function(){
var args = Array.prototype.slice.call(arguments);
console.log(args[1])
}
foo(1,2,4) //?
const obj1 = {
a: 5,
b: {
c: 6
}
}
const obj2 = Object.assign({},...
blogs.sravanth.co.uk2 min read