Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- let greeting1 = 'hello';
- let array1 = greeting1.split('');
- console.log(array1);
- let greeting2 = 'h,e,l,l,o';
- let array2 = greeting2.split(',');
- console.log(array2);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement