Useful Functions
Jump to navigation
Jump to search
Map function
' will duplicate an array to another
Splice
indexOf
Split
Used to split text given a delimiter into an array of substrings
var myText = 'hello-1' var mysplit = myText.split('-')
Will Yield
['hello', 1]