From 19874c5689c16f04f1d0476d7ab8f86236035ba9 Mon Sep 17 00:00:00 2001 From: Rohit Tanwar Date: Sat, 6 Jan 2018 14:46:39 +0530 Subject: [PATCH] isLowerCase --- snippets/isLowerCase.md | 2 +- snippets/isUpperCase.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/snippets/isLowerCase.md b/snippets/isLowerCase.md index 0e08b2dbb..b975de698 100644 --- a/snippets/isLowerCase.md +++ b/snippets/isLowerCase.md @@ -1,6 +1,6 @@ ### isLowerCase -Checks if the provided argument contains anything else than the lowerCase alphabets. If the second argument is provided to be true than numbers and other symbols are considered lowercase too. +Checks if the provided argument contains anything else than the lowercase alphabets. If the second argument is provided to be true than numbers and other symbols are considered lowercase too. ``` js const isLowerCase = (val,symbol = false) => { diff --git a/snippets/isUpperCase.md b/snippets/isUpperCase.md index 802eb0a97..3d4c74760 100644 --- a/snippets/isUpperCase.md +++ b/snippets/isUpperCase.md @@ -1,6 +1,6 @@ ### isUpperCase -Checks if the provided argument contains anything else than the upperCase alphabets. If the second argument is provided to be true than numbers and other symbols are considered uppercase too. +Checks if the provided argument contains anything else than the uppercase alphabets. If the second argument is provided to be true than numbers and other symbols are considered uppercase too. ``` js const isUpperCase = (val,symbol = false) => { if (symbol) return val === val.toUpperCase()