Which line could you add to this code to print "jaguar" to the console?
let animals = ['jaguar', 'eagle'];
//Missing Line
console.log(animals.pop()); //Prints jaguar
Which line could you add to this code to print "jaguar" to the console?
let animals = ['jaguar', 'eagle'];
//Missing Line
console.log(animals.pop()); //Prints jaguar