what is type conversion and coercion in JavaScript?
Number(): It converts any value to a number
String(): It converts any value to a string
let x = 5; // Number
let y = "10"; // String
let result = x + y; // JavaScript converts x to a string and concatenates it with y
console.log(result); // Output: "510"