Advertisement
vprichkapova

Lower-to-Upper-case

Apr 11th, 2020
719
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. function solve(character) {
  2. if (character === character.toUpperCase()) {
  3. console.log("upper-case");
  4. } else {
  5. console.log("lower-case");
  6. }
  7. }
  8. solve("L");
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement