Answers for "js get first two of array"

34

get first 10 items of array javascript

const list = ['apple', 'banana', 'orange', 'strawberry']
const size = 3
const items = list.slice(0, size) // res: ['apple', 'banana', 'orange']
Posted by: Guest on March-30-2020
0

get first two letter of an array javascript

var str = '012123';
var strFirstThree = str.substring(0,3);

console.log(str); //shows '012123'
console.log(strFirstThree); // shows '012'
Posted by: Guest on February-19-2021

Code answers related to "js get first two of array"

Code answers related to "Javascript"

Browse Popular Code Answers by Language