javascript get first 4 item of list code example
Example 1: js get first item from array
var colors = ["red", "green", "blue"];
var red=colors.shift();
//colors is now ["green","blue"];
Example 2: javascript get first element of array
console.log(ary[0]);