difference beetween @ and * code example
Example: what is the difference beetween += and =+
var myVar = 'this is '
myVar += 'something'
console.log(myVar)
//It will output "this is something"
var myVar = 'this is '
myVar += 'something'
console.log(myVar)
//It will output "this is something"