Javascript string and number

Tags:

“3” + 1 : “31”
1 + “3” : “13”

But,
“3”-1 : 2
“4” / 2 : 2
“2” * 2 : 4
“2” * “2”: 4