Given a sentence, return an array of the words in the sentence.
// input:
const s = 'The gecko climbs on the ceiling'
// output:
[ 'The', 'gecko', 'climbs', 'on', 'the', 'ceiling' ]
(Ctrl + ')
Loading...
/* output */
Next(Ctrl + y)
Given a sentence, return an array of the words in the sentence.
// input:
const s = 'The gecko climbs on the ceiling'
// output:
[ 'The', 'gecko', 'climbs', 'on', 'the', 'ceiling' ]
/* output */