//it finds the hypotenuse of the triangle //argument0 = first cathete (a) //argument1 = second cathete (b) var measure; measure = sqrt((argument0*argument0)+(argument1*argument1)); return measure