When sending items to console.log is there a way to name them? Similar to \"watch\" in visual studio
for example we have a var counter=1; so that in the co
var counter=1;
You can use the label string followed by variable name and a "+" operator in between, as follows:
console.log("Counter : " + counter);