JSFiddle - React, Tailwind, and code Playground

by Abdul Ahmad

JavaScript

function returnArray() {
  return [
  	1, 
    2, 
    30,
    4,
    5
  ];
}

const [one, two, three] = returnArray();
const ar = returnArray();

console.log(three);
console.log(ar);