From be862e842c7c1bf8fe1d1cff7eba4f98a054a9ce Mon Sep 17 00:00:00 2001 From: robiul Date: Sun, 5 Nov 2023 15:46:46 +0600 Subject: [PATCH 1/4] added rest javascript number methods at javascript at a glance --- data/js-one-glance.json | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/data/js-one-glance.json b/data/js-one-glance.json index 6a3370144..8d016c082 100644 --- a/data/js-one-glance.json +++ b/data/js-one-glance.json @@ -283,8 +283,17 @@ { "code": "toExponential" }, + { + "code": "toLocaleString" + }, { "code": "toPrecision" + }, + { + "code": "toString" + }, + { + "code": "valueOf" } ] }, From 7b62388879ad28b6f8cf6819616fe00fcc42d662 Mon Sep 17 00:00:00 2001 From: robiul Date: Sun, 5 Nov 2023 16:13:58 +0600 Subject: [PATCH 2/4] added window methods at javascript at a glance --- data/js-one-glance.json | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/data/js-one-glance.json b/data/js-one-glance.json index 8d016c082..df030e026 100644 --- a/data/js-one-glance.json +++ b/data/js-one-glance.json @@ -567,14 +567,17 @@ { "code": "clearTimeout" }, + { + "code": "clearInterval" + }, { "code": "close" }, { - "code": "focus" + "code": "confirm" }, { - "code": "open" + "code": "focus" }, { "code": "open" @@ -584,6 +587,9 @@ }, { "code": "setTimeout" + }, + { + "code": "setInterval" } ] }, From ed87885a7134234585fd8d6d5f06269f8746bdbb Mon Sep 17 00:00:00 2001 From: robiul Date: Sun, 5 Nov 2023 16:35:06 +0600 Subject: [PATCH 3/4] added static methods of javascript object at javascript at a glance --- data/js-one-glance.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/data/js-one-glance.json b/data/js-one-glance.json index df030e026..2fbfdec03 100644 --- a/data/js-one-glance.json +++ b/data/js-one-glance.json @@ -25,6 +25,19 @@ "code": "propertyIsEnumerable" } ] + }, + { + "title": "স্ট্যাটিক মেথড(অবজেক্ট)", + "items": [{ + "code": "from" + }, + { + "code": "isArray" + }, + { + "code": "of" + } + ] }, { "title": "মেথড(স্ট্রিং)", From 9d62b172a2ff2d2e684a48f674a0c522632efe25 Mon Sep 17 00:00:00 2001 From: robiul Date: Sun, 5 Nov 2023 16:57:25 +0600 Subject: [PATCH 4/4] added static methods of number at javascript at a glance --- data/js-one-glance.json | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/data/js-one-glance.json b/data/js-one-glance.json index 2fbfdec03..a038b06e0 100644 --- a/data/js-one-glance.json +++ b/data/js-one-glance.json @@ -309,6 +309,30 @@ "code": "valueOf" } ] + }, + { + "title": "স্ট্যাটিক মেথড(নাম্বার)", + "items": [{ + "code": "isFinite" + }, + { + "code": "isInteger" + }, + { + "code": "isNaN" + }, + { + "code": "isSafeInteger" + } + , + { + "code": "parseFloat" + } , + { + "code": "parseInt" + } + + ] }, { "title": "মেথড(ডেট)",