Skip to content

Instantly share code, notes, and snippets.

View AlisaBaranova's full-sized avatar

AlisaBaranova

View GitHub Profile
//Task 1
let rectanLength: number = 3;
let rectanWidth: number = 5;
let rectanSquare: number = (rectanLength * rectanWidth);
console.log("The rectan square is " + rectanSquare + "m")
//Task 2
let userWeight: number = 68;