Concatenate Uppercase Strings into a Word
Given an array of strings, use
Tip: You can compare each string to its
forEach
to append all uppercase characters together into a new word.Tip: You can compare each string to its
.toUpperCase()
value to check if it is uppercase.Premium
JavaScript
Console