Operators

Let's concatenate some strings!
Make sure to complete your work in the console.

  1. Create the variable firstName and assign it a string value equal to your first name.
  2. Create the variable space and assign it a string value equal to one space (this will be used as a seperator).
  3. Create the variable lastName and assign it a string value equal to your last name.
  4. Create the variable fullName and assing it a string value equal to the concatenation of firstName, space, and lastName.