From 3a98822a31b28e57e2b625dc42de29605ca1f2fa Mon Sep 17 00:00:00 2001 From: Lavrentiy Rubtsov <73550760+Rnbsov@users.noreply.github.com> Date: Sun, 6 Mar 2022 13:35:37 +0600 Subject: [PATCH] Perhaps it would be more correct --- 1-js/04-object-basics/01-object/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/1-js/04-object-basics/01-object/article.md b/1-js/04-object-basics/01-object/article.md index ed8a3f4d..7744a5c3 100644 --- a/1-js/04-object-basics/01-object/article.md +++ b/1-js/04-object-basics/01-object/article.md @@ -424,7 +424,7 @@ The phone codes go in the ascending sorted order, because they are integers. So ````smart header="Integer properties? What's that?" The "integer property" term here means a string that can be converted to-and-from an integer without a change. -So, "49" is an integer property name, because when it's transformed to an integer number and back, it's still the same. But "+49" and "1.2" are not: +So, `"49"` is an integer property name, because when it's transformed to an integer number and back, it's still the same. But `"+49"` and `"1.2"` are not: ```js run // Math.trunc is a built-in function that removes the decimal part