var
base
=
6
;
var
height
=
5
;
var
area
=
base
*
height
;
console.
log
(
"The area of rectangle is:"
,
area
)
;