Day5 Inheritance

Objective

In this challenge, we practice implementing inheritance and use JavaScript prototypes to add a new method to an existing prototype. Check out the attached Classes tutorial to refresh what we’ve learned about these topics.


Day5 Arrow Functions

Objective

In this challenge, we practice using arrow functions. Check the attached tutorial for more details.


Task

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:

  • If the element is even, multiply the element by 2.
  • If the element is odd, multiply the element by 3.

The function must then return the modified array.


Day4 Create a Rectangle Object

Objective

In this challenge, we practice creating objects. Check out the attached tutorial for more details.


Task

Complete the function in the editor. It has two parameters: and . It must return an object modeling a rectangle that has the following properties:

  • length : This value is equal to a.
  • width : This value is equal to b.
  • perimeter : This value is equal to 2 X (a + b)
  • area : This value is equal to a X b

Note: The names of the object’s properties must be spelled correctly to pass this challenge.


Day4 Count Objects

Objective

In this challenge, we learn about iterating over objects. Check the attached tutorial for more details.


Task

Complete the function in the editor. It has one parameter: an array, a, of objects. Each object in the array has two integer properties denoted by x and y. The function must return a count of all such objects o in array a that satisfy o.x = o.y.


Day4 Classes

Objective

In this challenge, we practice using JavaScript classes. Check the attached tutorial for more details.


Task

Create a Polygon class that has the following properties:

  • A constructor that takes an array of integer values describing the lengths of the polygon’s sides.
  • A perimeter() method that returns the polygon’s perimeter.
    Locked code in the editor tests the Polygon constructor and the perimeter method.

Note: The perimeter method must be lowercase and spelled correctly.


Day3 Try, Catch, and Finally

Objective

In this challenge, we learn about strings and exceptions. Check out the attached tutorials for more details.


Task

Complete the reverseString function; it has one parameter, s. You must perform the following actions:

  1. Try to reverse string s using the split, reverse, and join methods.
  2. If an exception is thrown, catch it and print the contents of the exception’s message on a new line.
  3. Print s on a new line. If no exception was thrown, then this should be the reversed string; if an exception was thrown, this should be the original string.

Day3 Throw

Objective

In this challenge, we practice using throw and catch statements to work with custom error messages.


Task

Complete the isPositive function below. It has one integer parameter, a. If the value of a is positive, it must return the string YES. Otherwise, it must throw an Error according to the following rules:

  • If a is 0, throw an Error with message = Zero Error.
  • If a is negative, throw an Error with message = Negative Error.

Day3 Arrays

Objective

In this challenge, we learn about Arrays. Check out the attached tutorial for more details.


Task

Complete the getSecondLargest function in the editor below. It has one parameter: an array, nums, of n numbers. The function must find and return the second largest number in nums.


Day2 Loops

Objective

In this challenge, we practice looping over the characters of string. Check out the attached tutorial for more details.


Task

Complete the vowelsAndConsonants function in the editor below. It has one parameter, a string, s, consisting of lowercase English alphabetic letters (i.e., a through z). The function must do the following:

  1. First, print each vowel in s on a new line. The English vowels are a, e, i, o, and u, and each vowel must be printed in the same order as it appeared in s.
  2. Second, print each consonant (i.e., non-vowel) in s on a new line in the same order as it appeared in s.

Day2 Conditional Statements (Switch)

Objective

In this challenge, we learn about switch statements. Check out the attached tutorial for more details.


Task

Complete the getLetter(s) function in the editor. It has one parameter: a string, s, consisting of lowercase English alphabetic letters (i.e., a through z). It must return A, B, C, or D depending on the following criteria:

  • If the first character in string s is in the set {a, e, i, o, u}, then return A.
  • If the first character in string s is in the set {b, c, d, f, g}, then return B.
  • If the first character in string s is in the set {h, j, k, l, m}, then return C.
  • If the first character in string s is in the set {n, p ,q,r, s, t, v, w, x, y, z}, then return D.

Hint: You can get the letter at some index i in s using the syntax s[i] or s.charAt(i).


Your browser is out-of-date!

Update your browser to view this website correctly. Update my browser now

×