Created
January 2, 2021 18:11
-
-
Save shahab570/7d7a43d4590b7ea72ea06304bfd91a44 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var words = ["This", "is", "john", "Doe"]; | |
var first = words[0]; | |
var second = words[1]; | |
console.log(first); //This | |
console.log(second); // is |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment