type coercion - mmedrano9438/peripheral-brain GitHub Wiki

is the automatic or implicit conversion of values from one data type to another (such as strings to numbers)

const value1 = "5"; const value2 = 9; let sum = value1 + value2;

console.log(sum); // "59"