Skip to content
FLAVIO COPES
flaviocopes.com
2026

The String split() method

Find out all about the JavaScript split() method of a string

~~~

split() truncates a string when it finds a pattern (case sensitive), and returns an array with the tokens:

const phrase = 'I love my dog! Dogs are great'
const tokens = phrase.split('dog')

tokens //["I love my ", "! Dogs are great"]
~~~

Related posts about js: