Skip to content

Instantly share code, notes, and snippets.

@McLarenCollege
Last active January 12, 2022 05:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save McLarenCollege/f878067e07268f981ddbc4e3226f4986 to your computer and use it in GitHub Desktop.
Save McLarenCollege/f878067e07268f981ddbc4e3226f4986 to your computer and use it in GitHub Desktop.
Exercise Name : Shorthand Using Concat

Write your code to change the value of the variable fullName to John Doe using the shorthand operator. A shorthand operator is one of the following operators +=,-=,*=,/=,++,-- Write your code here.

CODE TEMPLATE


let fullName = "John";
// write your code here
console.log(fullName);

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment