From f60838950ae1329f5f7526def08ca93b36b036a5 Mon Sep 17 00:00:00 2001 From: yendoz <102748767+yendoz@users.noreply.github.com> Date: Sun, 17 Apr 2022 00:11:16 +0900 Subject: [PATCH] Update 03_booleans_operators_date.md --- 03_Day_Booleans_operators_date/03_booleans_operators_date.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/03_Day_Booleans_operators_date/03_booleans_operators_date.md b/03_Day_Booleans_operators_date/03_booleans_operators_date.md index 38b0f63..576e5d9 100644 --- a/03_Day_Booleans_operators_date/03_booleans_operators_date.md +++ b/03_Day_Booleans_operators_date/03_booleans_operators_date.md @@ -565,7 +565,7 @@ console.log(`${date}/${month}/${year} ${hours}:${minutes}`) // 4/1/2020 0:56 The perimeter of the triangle is 12 ``` -1. Get length and width using prompt and calculate an area of rectangle (area = length x width and the perimeter of rectangle (perimeter = 2 x (length + width)) +1. Get length and width using prompt and calculate an area of rectangle (area = length x width) and the perimeter of rectangle (perimeter = 2 x (length + width)) 1. Get radius using prompt and calculate the area of a circle (area = pi x r x r) and circumference of a circle(c = 2 x pi x r) where pi = 3.14. 1. Calculate the slope, x-intercept and y-intercept of y = 2x -2 1. Slope is m = (y2-y1)/(x2-x1). Find the slope between point (2, 2) and point(6,10)