JavaScript String Exercise
JavaScript string is a primitive data type and is used for storing and manipulating a sequence of characters. It can contain zero or more characters within single or double quotes. This article contains a wide collection of JavaScript Programming examples based on String.
let s = "GeeksforGeeks"
console.log(s);
console.log(typeof s);
Output
GeeksforGeeks
string
Easy Questions
The Easy level includes articles that cover fundamental operations and straightforward tasks with JavaScript arrays.
- Length of JS String
- Reverse a string in JS
- Remove a character from a string in JS
- Delete the first character from JS String
- Remove Text from a String in JS
- Iterate Over String Characters in JS
- Sort a string in JS
- Check if String Has Only Alphabets in JS
- Capitalize the First Letter in JS
- Convert Comma-Separated String to Array in JS
- Get Last Character in JS String
- String strip in JavaScript
- Replace Multiple Spaces with Single Space in JS
- Number to String Conversion in JS
- Add characters to a string in JS
- Count String Occurrences in JS
- Find Index of Character in JS
- JavaScript string formatting
- Byte Array to String Conversion in JS
- Count Each Character’s Occurrence in JS
- Insert String at Specific Index in JS
- Remove All Line Breaks from String in JS
- Get Last N Characters in JS
- Check String Equality in JS
- Substring check in JavaScript
- Count Words in String using JS
- String to array conversion in JavaScript
- Vowel Count in JS String
- Case-Insensitive Comparison in JS
- String to Boolean Conversion in JS
- Get First Word in JS String
- Get First and Last Character in JS
- Check for Whitespace in JS
- Character Array from String in JS
- Replace Multiple Characters in JS
- Replace Forward Slash Globally in JS String
- Modify Textarea Content in JS
- Alphabetically Sort String in JS
- Find Unique Characters in String using JS
- Strip Non-Numeric Characters in JS
- Count Each Letter in String in JS
- Sort Array of Strings in JS
- Check if String Starts With Another in JS
- Vowel or Consonant Check in JS
- Get First Three Characters of string in JS
- Slice vs Substring in JS
- Single vs Double Quotes in JS
- Check Repeated Characters in String using JS
- Float to String Conversion in JS
- Keep First N Characters in String in JS
- Split string into array of words in JS
- Check for Digit in String in JS
- Check character is vowel or not in JS
- Remove Last Character from string using JS
- Substr vs Substring in JS
- Compare Two Strings in JS
- Count Character Occurrence in JS
- Multiline String to Array Conversion in JS
- Compare Two Strings in JS
- Get Nth Occurrence of Character of String in JS
- Swap Characters in String using JS
- Find smallest and largest word in a string using JS
- Concatenate Strings in JS
- Char to String Conversion in JS
- Check if Character is Digit using JS
- Generate String of Specific Length in JS
- Add Prefix and Suffix to String in JS
- Access Characters in String using JS
- Convert String to Roman Numerals in JS
- Case-Insensitive Alphabetical Sort in JS
- Count Alphabets in String using JS
- First Occurrence of Substring in JS
- Check String Start Pattern in JS
- Pad String to Specified Length using JS
- Reverse a string in place using JS
- Get string length Property in JS
- Count Alphabets in JS
- Float to String Conversion in JS
Medium Questions
The Medium level includes articles that delve deeper into working with JavaScript strings, exploring more advanced operations and methods
- Hash a String in JS
- Extract number from a string in JS
- Validate JSON String in JS
- Convert Image to Base64 in JS
- String to Date Conversion in JS
- JS RegExp(Regular Expression)
- Remove Non-Alphanumeric Characters using JS
- Remove Non-ASCII Characters using JS
- Title Case Conversion in JS
- Convert Object to String in JS
- Create String with Multiple Spaces in JS
- Palindrome Check in JS
- Replace Multiple Strings in JS
- Remove Punctuation from String in JS
- Convert User Input to RegExp in JS
- Remove occurrences of character in a string using JS
- URLify String (Spaces to %20) using JS
- Count number of alphabets using JS
- Replace Dots in JS String
- Count Specific Character Occurrence in JS
- Use Quotes in String in JS
- Truncate String with Ellipsis in JS
- Extract Emails from String using JS
- Extract URLs from String in JS
- String to Binary Conversion in JS
- Character Order Pattern Check in JS
- Check if String is Pangram using JS
- Replace Words with RegEx in JS
- Most Frequent Word in String using JS
- Add Two Binary Strings in JS
- Find index of Last Occurrence of Substring using JS
- Capitalize First letter of Each Sentence in JS
- Permutation Check for Strings using JS
- Truncate string to a certain length using JS
- Toggle Character Case in String using JS
- Print Alphabetical Character Frequency using JS
- Remove consecutive duplicate characters using JS
- Recursive Palindrome Check in JS
- Anagram Check for Strings using JS
- Match Character with Options in JS
- Check Isomorphic Strings using JS
- Print all subsequences of a string using JS
- Find second most repeated word using JS
- Mask Characters Except Last using JS
- Check if String is Made of Repeating Substring in JS
- Extract strings with a digit using JS
- Find kth non-repeating character using JS
- Find Strings Matching Pattern in Dictionary using JS
- Find Second Most Repeated Word in Sequence using JS
- Check Equal Character Frequency using JS
- Check if String Can Split into Four Distinct Parts using JS
- Count distinct subsequences using JS
- Count Equal Pairs in String using JS
- Add Multiple Binary Strings using JS
- Count Distinct Occurrences as Subsequence in JS
- Count Flips for Alternate Binary string using JS
- Check Single Flip for Same Bits using JS
- Min Flips for Uniform Characters using JS
- Perfect reversible string in JS
- Count Alphabet Characters using JS
- Float to String Conversion using JS
- String to Binary Conversion using JS
Hard Questions
The Hard level includes articles that cover more intricate and less common tasks
- Find lexicographically next string using JS
- Print All Permutations of String in JS
- Divide Large Number in String Form using JS
- Longest Common Subsequence in JS
- Word Search in 2D Grid using JS
- Decode Encoded String Recursively using JS
- Check for Palindromic Rotation using JS
- Find kth non-repeating character using JS
- Generate Strings with Spaces using JS
- Find lexicographically next string using JS
- Generate binary strings from given pattern using JS
- Count strings with consecutive 1s in JS
- Find binary representation of next number using JS
- Reverse Only Consonants without affecting other character in JS
- Minimum Manipulations to make two string Anagram using JS
- Find ith index character in a binary string iteration using JS
- Add minimum characters at front to make string palindrome in JS
- JavaScript print shortest path to print a string on screen
- Longest Balanced Subsequence Length using JS
- Valid IP Address Format Check using JS
- Convert user input string into regular expression using JS
- Extract email addresses from a string using JS
- Mirror Characters in String using JS
- Find index of first occurrence of a substring using JS
- Truncate a string to a certain length using JS
- Print all permutations of given string using JS
- Print all strings that can be made by placing spaces using JS
- Print all subsequences of a string in JS
- Character Pattern Check in String using JS
- Print frequency of each character in alphabetical order using JS
- Recursive Palindrome Check using JS
- Longest Balanced Subsequence Length using JS
- Recursive String Decode (Count-Substring) using JS
- Find index of last occurrence of a substring using JS
- Find kth non-repeating character using JS
We have a complete list of Javascript String functions, to check those please go through this JavaScript String Complete Reference article.
We have created an article of JavaScript Examples, and added list of questions based on Array, Object, Function, …, etc. Please visit this JavaScript Examples to get complete questions based articles list of JavaScript.
We have created a complete JavaScript Tutorial to help both beginners and experienced professionals. Please check this JavaScript Tutorial to get the complete content from basic syntax and data types to advanced topics such as object-oriented programming and DOM manipulation.