Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width">
  <title>JS Bin</title>
</head>
<body>
</body>
</html>
 
/* 
Use `.map()` to downcase all the words in `loudWords`. 
Save the returned values to a variable 
declared with `const` called `lowerCaseWords`
*/
const loudWords = ["OK!", "WHAT?", "HELLO", "CAN YOU HEAR ME?"]
// add your code below
// Do not modify 
console.log(lowerCaseWords) 
console.log(loudWords)
Output

You can jump to the latest bin by adding /latest to your URL

Dismiss x