Guest User

Untitled

a guest
Apr 24th, 2018
68
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. Call the toLowerCase() method
  4. on the string.
  5.  
  6. NOTE: We will cover methods in more detail in future section.
  7.  
  8. EX: "FULLSTACK ACADEMEY".toLowerCase()
  9. OUTPUT: "fullstack academy";
  10.  
  11. */
  12.  
  13. // Challenge 4: toLowerCase() - WRITE CODE BELOW
  14. "CAN I HAVE THIS IN LOWER CASE" .toLowerCase()
Add Comment
Please, Sign In to add comment