We use cookies to ensure you have the best browsing experience on our website. Please read our cookie policy for more information about how we use cookies.
Day 1: Arithmetic Operators
Day 1: Arithmetic Operators
Sort by
recency
|
69 Discussions
|
Please Login in order to post a comment
function getArea(length, width) { let area; area = length * width; return area; }
function getPeriemeter(length, width) { let periemter; periemeter = length *2 + width*2; return periemeter; }
}