function Person(firstName, lastName) { this.firstName = firstName; this.lastName = lastName;...
function getAge(...args) { console.log(typeof args);}...
const numbers = [1, 2, 3];numbers[10] = 11;console.log(numbers);