From f97634f072c52b01725d2d61dc46a3e4b8f51504 Mon Sep 17 00:00:00 2001 From: Ayush Kumar Date: Mon, 21 Oct 2024 23:17:49 +0530 Subject: [PATCH] removed the duplicate entries removed duplicate entries for " "Don't use new Array()". --- README.md | 3 --- 1 file changed, 3 deletions(-) diff --git a/README.md b/README.md index c881792..0b6fa2c 100644 --- a/README.md +++ b/README.md @@ -61,9 +61,6 @@ Connection test for the remote instance defined did not result in a positive res ### Duplicate Script Include Name This uses a table check to find other Script Includes having the same API name. Technically this is possible, but causes issues as there is no way to control which Script Include will be instantiated when being called. -### Don't use new Array() -In general, you should use the array literal notation when possible. It is easier to read, it gives the compiler a chance to optimize your code, and it's mostly faster too. - ### Don't use new Object() In general, you should use the object literal notation when possible. It is easier to read, it gives the compiler a chance to optimize your code, and it's mostly faster too.