Name the built-in mathematical function / method that is used to return an
absolute value of a number.
Answers
Answered by
6
Java and JavaScript:
Math.abs( )
Python:
abs( ) or fabs( )
Answered by
3
Answer:
To return absolute value of the number:-
Math.abs()
Syntax:- Math.abs(number);
Similar questions