Skip to content

Instantly share code, notes, and snippets.

@isabellatea
Created April 6, 2019 18:13
Show Gist options
  • Save isabellatea/5d7f28e041dd7368d0fd8836dc884519 to your computer and use it in GitHub Desktop.
Save isabellatea/5d7f28e041dd7368d0fd8836dc884519 to your computer and use it in GitHub Desktop.
JS Bin // source https://jsbin.com/wasenol
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>JS Bin</title>
</head>
<body>
<script id="jsbin-javascript">
let coaches = ["Wolf", "Bella", "Zakiya", "Maria"]
//console.log the 2nd name in your array
console.log(coaches[1])
</script>
<script id="jsbin-source-javascript" type="text/javascript">let coaches = ["Wolf", "Bella", "Zakiya", "Maria"]
//console.log the 2nd name in your array
console.log(coaches[1])</script></body>
</html>
let coaches = ["Wolf", "Bella", "Zakiya", "Maria"]
//console.log the 2nd name in your array
console.log(coaches[1])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment