Advertisement
Pijomir

Upper case

Jan 11th, 2024
940
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function makeUpperCase(input) {
  2.     let allWords = input.split(/\W+/).filter(Boolean).map(a => a.toUpperCase());
  3.     console.log(allWords.join(', '));
  4. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement