Variables
What is a variable?
You can use a variable to make several references to the same piece of data. Variables are defined in JavaScript using the var keyword.
Variable declaration
var variableName = value;
EXAMPLE
var name = "Zoe";
var postLiked = "fals...
samstech.hashnode.dev2 min read