Guest User

Untitled

a guest
Jan 21st, 2018
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. function main() {
  2. var s = readLine();
  3. var count = 1;
  4. for (let i = 0; i < s.length; i++) {
  5.  
  6. if (s[i] === s[i].toUpperCase()) {
  7. count++
  8. }
  9. } console.log(count);
  10. }
Add Comment
Please, Sign In to add comment