You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

250 B

jabs

Instructions

  • Create a function named abs that takes a number as an argument and returns its absolute value. You must make your own implementation. You must not use Math.abs()

Expected function

function abs(n) {

}