jsTasks.md - brainchildservices/curriculum GitHub Wiki
Tasks
In one word, if it is enclosed in quotation marks, what is it?
Create a variable called carName, assign the value Volvo to it.
This statement...userName = "buddy5000";...is correct only if the variable has already been ______.
Declare a variable without defining it. Then, in a second statement, assign it a string. (You've learned only one rule for naming variables so far, so it's the only one I'll hold you to.)
Write a program to declare an integer ?
Write a program to access an integer & assign value to an integer ?
Write a program Swap variable values using a temporary variable.
Write a program Swap variable values without a temporary variable.