DEV Community

Mark Matthew Vergara
Mark Matthew Vergara

Posted on • Updated on

Javascript Tagalog - Array Shift Method

Ano ngaba ang Array Shift method sa Javascript?
yung Array Shift method sa javascript is a-alisin niyalang yung pinaka-unang element ng array.

Pano gamitin:

const arr = [1,2,3]

arr.shift()

console.log( arr ) // [ 2, 3 ]
Enter fullscreen mode Exit fullscreen mode

Return Value:
ano yung value if lalagay mo siya sa variable?


const arr = [1,2,3]

const returnValue = arr.shift()

console.log( returnValue ) // 1

Enter fullscreen mode Exit fullscreen mode

Kung ano yung inalis na value ng shift() method yun yung i re-return niya.


More tagalog Javascript Learning Resources:
https://javascript-methods-in-tagalog.vercel.app/

Top comments (0)