Contact: aviboots(AT)netvision.net.il
40,244 questions
52,261 answers
573 users
const width: number = 19, heigth: number = 11; console.log("perimeter = " + (width + heigth) * 2); console.log("area = " + width * heigth); /* run: "perimeter = 60" "area = 209" */