Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

Get First Second Third Term In Array


  const [first, second, third] = ["a", "b", "c", "d", "e", "f", "g", "h"];
console.log(first);
console.log(second);
console.log(third);
 
PREVIOUS NEXT
Tagged: #Get #First #Second #Third #Term #In #Array
ADD COMMENT
Topic
Name
7+7 =