To perform arithmetic operations in JavaScript, you can use the following operators:
let sum = 5 + 3; // 8
let fullName = "John" + " " + "Doe"; // "John Doe"
let difference = 10 - 5; // 5
let product = 4 * 6; // 24
let quotient = 12 / 3; // 4
let remainder = 10 % 3; // 1
let power = 2 ** 3; // 8
You can also combine these operators to perform more complex arithmetic operations. Keep in mind the operator precedence and use parentheses to group operations if necessary.