From df70d0ff94ac3481e8a3567361f9926552692f0f Mon Sep 17 00:00:00 2001 From: Ememe Tochukwu Ebuka Date: Sun, 21 Aug 2022 19:08:44 +0100 Subject: [PATCH] Update 16_day_json.md changed indentations to indentation --- 16_Day_JSON/16_day_json.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/16_Day_JSON/16_day_json.md b/16_Day_JSON/16_day_json.md index 33336dc..f8daf30 100644 --- a/16_Day_JSON/16_day_json.md +++ b/16_Day_JSON/16_day_json.md @@ -251,7 +251,7 @@ The _JSON.parse()_ is very handy to use. You do not have to pass optional parame ### Converting Object to JSON -When we want to change the object to JSON we use _JSON.stringify()_. The stringify method takes one required parameter and two optional parameters. The replacer is used as filter and the space is an indentations. If we do not want to filter out any of the keys from the object we can just pass undefined. +When we want to change the object to JSON we use _JSON.stringify()_. The stringify method takes one required parameter and two optional parameters. The replacer is used as filter and the space is an indentation. If we do not want to filter out any of the keys from the object we can just pass undefined. ```js JSON.stringify(obj, replacer, space)