So, I have the code, its not done, but all i want it to do is display one alert box if I write the word \'help\', and say something else if anything else is entered.
Just change this: if (reply === 'help' || 'Help')
if (reply === 'help' || 'Help')
To this: if (reply === 'help' || reply === 'Help')
if (reply === 'help' || reply === 'Help')
The or statement was not comparing the variable.
or