JavaScript Quiz Practice
Active Recall Drill Session
← Exit SessionQuestion 1 of 1
mediumJavaScript
What does this log?
code
function addToCart(cart) {
cart.push('item');
}
const myCart = [];
addToCart(myCart);
console.log(myCart.length);Loading compiler resources...
Active Recall Drill Session
function addToCart(cart) {
cart.push('item');
}
const myCart = [];
addToCart(myCart);
console.log(myCart.length);