Contact: aviboots(AT)netvision.net.il
41,446 questions
53,993 answers
573 users
const width = 17, heigth = 10; console.log("perimeter = " + (width + heigth) * 2); console.log("area = " + width * heigth); /* run: perimeter = 54 area = 170 */