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