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
| //1. Create a variable hacker1 with the driver's name | |
| var hacker1 = "Oriol"; | |
| //2. Print "The driver's name is XXXX" | |
| console.log("The driver's name is: " + hacker1); | |
| //3. Create a variable hacker2 and ask the user for the navigator's name | |
| var hacker2 = window.prompt("What's your name?"); | |
| //4. Print "The navigator's name is YYYY" |
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
| /* | |
| ##Device = Desktops | |
| ##Screen = 1281px to higher resolution desktops | |
| */ | |
| @media (min-width: 1281px) { | |
| /* CSS */ | |