26.
Which built-in JavaScript function can be used to find the maximum value between two numbers?
Math.max()
Math.min()
Math.pow()
Math.abs()
Correct: A
The Math.max() function is used to find the maximum value among two or more numbers. It takes multiple arguments and returns the highest value.