JSFiddle - React, Tailwind, and code Playground
by Federico
JavaScript
const address = ['Via Luigi Angeloni 15', 'Rome', 'Italy', '00149'];
const [ , city, country, zip = '00100' ] = address;
console.log(`You are in ${city}, ${country}`);
const item = ['Coffee (hot)', '$2.00', '$2.50', '$2.75'];
const [ coffee, , medium ] = item;
console.log(`A medium ${coffee} costs ${medium}`);