I have a quick question in regards to the actual request of the exercise. We are asked to create a filename (filename: hello_world.js) then create script to the console. how do we link the Filename in Atom to the Goggle chrome console. I find the coding quite straight forward but looking for guidance on the exercise request. Thank you! .
Exercise Example below.
- Hello World.
filename: hello_world.js
- Create a script that stores the text string “
Hello
” in a variable “hello
” and prints this variable to the console. - Create a variable “
world
” that takes care of the text string “World
“. - Now print both variables of the console in only one console.log statement
Challenge:
- Use the variables “
hello
” and “world
” in one or more print sentences to give the printout below:
Hello? World?