All except + do the math. How do I do an actual addition mathematically? Don't ask why I need it. I'm curious.
let first = "2" + 2  
let second = 4 + 4  
let third = first + second  
console.log(third)  
logged 228
let first = "2" + 2  
let second = 4 + 4  
let third = first - second  
console.log(third)  
logged 14
let first = "2" + 2  
let second = 4 + 4  
let third = first * second  
console.log(third)  
logged 176
let first = "2" + 2  
let second = 4 + 4  
let third = first / second  
console.log(third)  
logged 2.75
