UNPKG

javascripting

Version:

Learn JavaScript by adventuring around in the terminal.

21 lines (11 loc) 461 B
--- # NUMBERS Numbers can be integers, like `2`, `14`, or `4353`, or they can be decimals, also known as floats, like `3.14`, `1.5`, or `100.7893423`. ## The challenge: Create a file named numbers.js. In that file define a variable named `example` that references the integer `123456789`. Use `console.log()` to print that number to the terminal. Check to see if your program is correct by running this command: `javascripting verify numbers.js` ---