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