javascript-learner/5.9Destructuring/t.js

5 lines
106 B
JavaScript
Raw Normal View History

2024-06-22 11:17:10 +02:00
let arr = ["John", "Smith"]
let [firstName, surname] = arr;
console.log(firstName);
console.log(surname);