Objective
In this challenge, we practice creating buttons in JavaScript. Check out the attached tutorial for learning materials.
Complete the function in the editor below by returning a RegExp object, re, that matches any string s satisfying both of the following conditions:
In this challenge, we use a Regular Expression to evaluate a string. Check out the attached tutorial for more details.
Complete the function in the editor below by returning a RegExp object, re, that matches any string s that begins and ends with the same vowel. Recall that the English vowels are a, e, i, o, and u.
In this challenge, we learn about JavaScript Dates. Check out the attached tutorial for more details.
Given a date string, dateString, in the format MM/DD/YYYY, find and return the day name for that date. Each day name must be one of the following strings: Sunday, Monday, Tuesday, Wednesday, Thursday, Friday, or Saturday. For example, the day name for the date 12/07/2016 is Wednesday.
Today, we’re practicing bitwise operations. Check the attached tutorial for more details.
We define S to be a sequence of distinct sequential integers from 1 to n; in other words, S = {1,2,3,…,n}. We want to know the maximum bitwise AND value of any two integers, a and b (where (a < b)), in sequence S that is also less than a given integer, k.
Complete the function in the editor so that given n and k, it returns the maximum a & b < k.
Note: The & symbol represents the bitwise AND operator.
In this challenge, we practice using arrow functions. Check the attached tutorial for more details.
Complete the function in the editor. It has one parameter: an array, nums. It must iterate through the array performing one of the following actions on each element:
The function must then return the modified array.
In this challenge, we practice creating objects. Check out the attached tutorial for more details.
Complete the function in the editor. It has two parameters: and . It must return an object modeling a rectangle that has the following properties:
Note: The names of the object’s properties must be spelled correctly to pass this challenge.
Update your browser to view this website correctly. Update my browser now