Skip to content

Instantly share code, notes, and snippets.

@zachgoll
Created December 24, 2020 23:32
Show Gist options
  • Select an option

  • Save zachgoll/2ba6dbcbbe658038a8ae48711f8cce93 to your computer and use it in GitHub Desktop.

Select an option

Save zachgoll/2ba6dbcbbe658038a8ae48711f8cce93 to your computer and use it in GitHub Desktop.
const variable1 = 10;
const variable2 = variable1;
const variable3 = "Zach";
const variable4 = {
variableType: "object",
variableValue: "some value",
};
const variable5 = (function () {
return "Hello, my name is ";
})();
const variable6 = variable5 + variable3;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment