From 292d7483a888cc9fe2d721d0bc1eb8113dbf9a34 Mon Sep 17 00:00:00 2001 From: geekskai Date: Thu, 14 Nov 2024 23:49:57 +0800 Subject: [PATCH] Remove community interaction section from the double quotes in JavaScript blog post --- .../js/how-to-check-if-character-is-double-quote-in-js.mdx | 5 ----- 1 file changed, 5 deletions(-) diff --git a/data/blog/js/how-to-check-if-character-is-double-quote-in-js.mdx b/data/blog/js/how-to-check-if-character-is-double-quote-in-js.mdx index fb3f9aa..8d68986 100644 --- a/data/blog/js/how-to-check-if-character-is-double-quote-in-js.mdx +++ b/data/blog/js/how-to-check-if-character-is-double-quote-in-js.mdx @@ -113,11 +113,6 @@ In this example, we use the `indexOf()` method to check if the character `char` - A similar solution is provided with a slight variation: - `if((str.indexOf('\'') > -1) && (str.indexOf('"') > -1)) { //Code here }` -### 🗣️ Community Interaction -- 💬 Users commented on the clarity of the question and provided additional insights or corrections. -- 👥 Some responses highlighted the importance of respectful communication in coding communities. - - ## Comparison | Method | Description |