The console is a great tool for experimentation, and we are going to continue to use it throughout the class; however, it has some limitations:
First, if you haven't yet installed a text editor like Sublime Text 3, now is the time. Do this before moving on.
We provide a starter project that you can use for most days' exercises. You can get it by following these instructions:
[Right click here](https://github.com/hackreactor/reactorprep-starter/archive/master.zip and select "Save Link As..." to save the archive somewhere, e.g your desktop.
Next, unarchive the folder inside (can usually be done by just double-clicking) and open the folder for the current day's project.
Now, complete the following steps:
function square(x) {
return x * x;
}
square(10) into the
console and hit Enter -- 100 should be the result. If so, everything's
working!