Skip to content

Latest commit

 

History

History
35 lines (21 loc) · 291 Bytes

Unshift.md

File metadata and controls

35 lines (21 loc) · 291 Bytes

.unshift()

Prepend one or more items to the node.


Usage

node.unshift( /* Items */ ); // Returns insertion index


Examples


One String

node.unshift('Hello World');

Multiple Numbers

node.unshift(1,2,3);