Library

easy
String Includes Kata
Write a function that checks if a given string includes a specific substring. Use String.prototype.includes() method.
medium
Array Index Finder
Create a function that takes an array of numbers and returns the index of a given element. Use Array.prototype.findIndex() to implement the function.
medium
Date UTC Full Year
Create a function that takes a date and a year and sets the date's UTC full year to the provided year.
easy
Set Seconds Kata
Write a function that takes a date object and a number of seconds and returns a new date object with the seconds set to the provided value. Example input: setSeconds(new Date('2022-10-10T10:10:10'), 30) Expected output: new Date('2022-10-10T10:10:30')
easy
Date setMonth() Kata
Write a function that takes a date object and a number representing the desired month, and sets the month of the date to the given month.
medium
Array Slice Kata
Implement various functionalities using Array.prototype.slice() method
easy
String trimStart() Method
Write a function that uses the String.prototype.trimStart() method to remove any whitespace characters from the beginning of a given string.
easy
Find the First Occurrence of a Substring in a String
Write a function that takes a string and a substring, and returns the index of the first occurrence of the substring in the string. If the substring is not found in the string, return -1.
medium
MatchAll Kata
Write a function that takes a string and returns an array of matched patterns using String.prototype.matchAll().
easy
Match String Pattern
Write a function that returns the result of a string match with a given pattern.
easy
Get Day of Week from a Date
Write a function that uses the Date.prototype.getDay() method to determine the day of the week for a given date object.
easy
Date Time Conversion
Converts a given date to a time string
easy
Find Last Index Kata
Write a function that takes an array and a value as arguments and returns the index of the last occurrence of that value in the array using Array.prototype.lastIndexOf(). If the value is not found, return -1.
easy
LowerCase Kata
Implement a function that takes a string as input and returns it in lower case.
easy
String to Uppercase kata
Convert a string to uppercase using String.prototype.toUpperCase();
easy
CharAt Kata
Implement a function that returns the character at the specified index of a given string.
easy
String Concatenation Kata
Create a function that concatenates two strings using the String.prototype.concat() method. The function should take two string parameters and return the concatenated string.
easy
Unshift Kata
Create a function that takes an array and a value as arguments and adds the value to the beginning of the array using the unshift() method.
easy
Concatenation Kata
Write a function that concatenates two strings using the String.prototype.concat() method.
medium
Array Flatten Exercise
Write a function that flattens nested arrays using Array.prototype.flat() method.
easy
Padding a string
Create a function that accepts a string and a target length. If the length of the string is less than the target length, pad the string with spaces at the beginning until the target length is reached. If the string length is greater than or equal to the target length, return the original string.
easy
Seconds Counter
Create a function that counts the number of seconds in a given timestamp
easy
Reversed Array
Create a function that takes an array as input and returns a new array with the elements in reversed order.
easy
Split and Join String Exercise
Write a function that takes a string as input and splits it into an array of words using String.prototype.split(). Then, join the array back into a string using Array.prototype.join(). Finally, return the new string with a different delimiter separating each word.
medium
Find Index Kata
Write a JavaScript function to find the index of an item in an array using Array.prototype.findIndex().
easy
Code Point At
Convert a string to an array of Unicode code points using String.prototype.codePointAt() method.
easy
Date.prototype.getYear() Kata
Write a function that takes a date and returns the year in the hh:mm:ss format.
easy
String.charAt() Kata
Write a function that accepts a string and a number as arguments, then returns the character at that position in the string. Use String.prototype.charAt() for this exercise.
easy
Every Check
Write a function that checks if every element in an array satisfies a given condition.
easy
EndsWith Kata
Write a function that checks whether a given string ends with the specified suffix or not.
easy
Last Occurrence of a Substring in a String
Write a function that takes a string and a substring as arguments, and finds the last occurrence of the substring in the string. If the substring is not found, return -1.
medium
String Match Kata
Create a function that takes in a string and uses String.prototype.match() to find all occurrences of a pattern within the string.
easy
Substring Kata
Given a string, return a new string that is a substring of the original string. The substring should start at a specified index and continue until the end of the original string.
medium
Match Substrings in a String
Write a function that takes a string and a regular expression and returns an array of all the substrings in the string that match the regular expression.
easy
String ends with kata
Write a function that returns whether a given string ends with the provided suffix or not
easy
Date Prototype Get Date
Create a function that returns the current date as a number (1-31).
easy
UTC Date Converter
Write a function that takes a date string as input and converts it to a UTC date string format.
easy
String to Local Uppercase Kata
In this kata, you will be working with the String.prototype.toLocaleUpperCase() method to convert a string to uppercase according to the user's locale.
easy
Sort names using localeCompare()
Given an array of person objects, sort them alphabetically by their last name using String.prototype.localeCompare().
medium
Array Grouping Kata
Implement a function that groups an array of objects by a given key and returns a new array of objects, where each object has a key and an array of objects that have that key.
easy
String StartsWith Kata
Implement a function that returns true if a given string starts with a specific substring.
easy
String Replace All
Create a function that replaces all occurrences of a substring with a new string.
easy
Set Entries Kata
Implement a function that takes in a Set and returns an array of entries
easy
Word sorting
Sort an array of words based on their alphabetical order using String.prototype.localeCompare() method.
easy
Set Add Kata
Implement a function that adds a value to a set using Set.prototype.add().
easy
String Slice Kata
Create a function that slices a string based on a given start and end indexes
easy
String to Uppercase
Create a function that takes a string as input and returns the same string in uppercase letters using the `toString()` method of the String object.
easy
Array Index Kata
Complete the functions to find the index of an element in an array using Array.prototype.indexOf().
medium
Find Last Index Kata
Write a function that finds the last index of a given element in an array using the Array.prototype.findLastIndex method.
easy
String Search Kata
Write a function that takes a string and a search term and returns the index of the first occurrence of the search term in the given string. If the search term is not present in the string, return -1.
easy
Set Milliseconds Kata
Implement a function that sets the milliseconds of a given date object to a specified value.
easy
Array Every
Create a function that uses Array.prototype.every() to check if all the elements in an array meet a certain condition.
medium
Date toLocaleTimeString() kata
Write a function that takes a Date object and returns a string representing the time portion of the date in the current time zone using the toLocaleTimeString() method. The function should also take an optional argument specifying the locale to use.
easy
String to Uppercase
Write a function that converts a given string to uppercase
easy
Anagram Checker
Create a function that determines if two strings are anagrams of each other.
easy
String StartsWith
Create a function that takes in a string and checks if it starts with a given substring. Return a boolean indicating whether or not the string starts with the given substring.
easy
String CharAt Kata
Write a function that extracts a character from a string given an index using String.prototype.charAt()
easy
String includes
Create a function that takes in two parameters, a string and a substring, and checks if the string includes the substring. Return a boolean value.
easy
String padding kata
Create a function that takes a string and a number as arguments, and pads the string on the right side with spaces until the string reaches the desired length.
easy
String valueOf() Kata
Write a function that returns the value of a given string using the String.prototype.valueOf() method.
easy
Array to String Conversion
Convert an array to a string with comma-separated values. The input array can contain numbers, strings, objects, or arrays.
easy
Unicode Kata
Write a function that checks if a given string has a unicode character code point greater than or equal to 128. Use the String.prototype.codePointAt() method.
easy
Array Concatenation
Write a function that takes two arrays as arguments and concatenates them into a new array using the Array.prototype.concat() method.
medium
Array copyWithin Kata
Create a function that uses the copyWithin method to replace specified elements within an array.
easy
Splitting Strings
Given a sentence, split it into an array of words using the String.prototype.split() method.
easy
Array Push Kata
Write a function that takes an array and a value and pushes the value to the end of the array using Array.prototype.push().
easy
Trim Ending Spaces
Write a function that takes a string and removes any trailing whitespace at the end of it using String.prototype.trimEnd().
easy
Substring Kata
Write a function that returns a substring of a given string, based on the start and end index provided
easy
Date.toLocaleDateString() Kata
Write a function that takes a Date object and returns the date formatted in the user's local format using the toLocaleDateString() method.
medium
Grouping Arrays to Map
Given an array of objects, group the objects based on a specific key and return a map object.
easy
String IndexOf Kata
Create a function that takes two parameters: a string and a target substring, and returns the index of the first occurrence of the target substring in the string. If the target substring is not found, return -1.
medium
Inventory Management System
Create an Inventory Management System that allows users to add, remove and update items in the inventory.
medium
Stock Advisor
Create a Stock Advisor that recommends which stocks to buy based on certain parameters.
easy
Trimming White Space at End of String
Create a function that removes white space at the end of a given string using String.prototype.trimEnd().
easy
Array Includes Kata
Write a function that checks if an element is present in an array using Array.prototype.includes() method.
easy
Current Minutes
Create a function that returns the current minutes.
easy
String Padding Kata
Create a function that takes a string and a number and pads that string with a specified character until it reaches the given length.
easy
Date Year Calculator
Create a function that returns the current year using Date's built-in getFullYear method
easy
Substring Kata
Write a function that returns a substring of a given string, starting at a specified index and ending before a specified index.
easy
Date UTC Minutes Setter
Implement a function that takes a Date object and a number representing minutes and sets the UTC minutes of the Date object to the provided value. The function should return the updated Date object.
medium
Date ToString Kata
Implement a function that takes a Date object as input and returns a formatted string
easy
String Repeat Kata
Create a function that receives a string and a number n, the function should return the string repeated n times.
easy
String toString()
Write a function that converts a given string to its string representation using the toString() method.
easy
String IndexOf Kata
This kata focuses on using String.prototype.indexOf() method.
easy
String endsWith Kata
Create a function that checks if a given string ends with a specified suffix.
medium
Recursive Factorial Function
Write a function that uses recursion to calculate the factorial of a given positive integer.
medium
Precision Cutting Kata
Write a function that takes in a string and uses precision cutting to remove all occurrences of the letter 'e'. Return the resulting string.
medium
Match All Occurrences
Create a function that receives a string and a regular expression pattern and returns an array of all the occurrences of the pattern in the string using String.prototype.matchAll().
easy
Set Delete Kata
Create a function that accepts a Set and a value to remove, and returns the updated Set after deleting the value.
easy
Array Filling Kata
Fill arrays with specific values using Array.prototype.fill()
easy
Array Index Of Kata
Write a function that returns the index of the first occurrence of a given element in an array using Array.prototype.indexOf(). If the element is not found in the array, return -1.
easy
Set Event Start Time
Create a function that takes a start time and an event duration and returns the end time of the event, using the Date.prototype.setHours() method to set the hours of the start time.
easy
Match Me If You Can
Create a function that takes two parameters: a string and a regular expression. The function should return an array of all matches found in the string using the regular expression.
easy
Joining Arrays
Given two arrays, join them to create a new array.
easy
Array Type Check
Write a function that checks if a given variable is an array. If it is an array, return true, otherwise return false.
easy
UTC Date
Given a date, return the UTC date.
easy
Pad Start Kata
Create a function that takes in a string and a length and returns a new string with the original string padded with leading spaces if it is shorter than the provided length.
easy
Get UTC Seconds
Write a function that takes in a date and returns the seconds within the minute in UTC time.
medium
Array with() method
Implement the Array.prototype.with() method that returns a new array with the elements from the original array and the added elements.
easy
String Repeat Kata
Implement a function that concatenates a given string 'n' times using the String.prototype.repeat() method.