From 6a742c4a94d12be751d60d03146e735d30442dc0 Mon Sep 17 00:00:00 2001 From: LeviDing Date: Tue, 8 Jun 2021 23:18:44 +0800 Subject: [PATCH] Update article.md --- 1-js/02-first-steps/08-operators/article.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/1-js/02-first-steps/08-operators/article.md b/1-js/02-first-steps/08-operators/article.md index 498870e4..decf5bcf 100644 --- a/1-js/02-first-steps/08-operators/article.md +++ b/1-js/02-first-steps/08-operators/article.md @@ -63,8 +63,8 @@ In school maths, we write that as ab. For instance: ```js run -alert( 2 ** 2 ); // 2² = 4 -alert( 2 ** 3 ); // 2³ = 8 +alert( 2 ** 2 ); // 2² = 4 +alert( 2 ** 3 ); // 2³ = 8 alert( 2 ** 4 ); // 2⁴ = 16 ```