Guest User

Untitled

a guest
Apr 24th, 2018
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. /* Challenge - Practice using Strings
  2.  
  3. Challenge - Create a String by surrounding characters with an apostrophe or quotation marks.
  4. Call the toUpperCase() method on the string.
  5.  
  6. NOTE: We will cover methods in more detail in future section.
  7.  
  8. EX: "javascript jumpstart".toUpperCase()
  9. OUTPUT: "JAVASCRIPT JUMPSTART";
  10.  
  11. */
  12.  
  13. // Challenge 3: toUpperCase() - WRITE CODE BELOW
  14.  
  15. "my name is skillsTek" .toUpperCase()
Add Comment
Please, Sign In to add comment