Type Coercion Lab

Easy
11
48.7% Acceptance

In this lab, your task is to understand type coercion in JavaScript and perform the following tasks in the index.js file:

  1. Create a function that adds two string numbers.
  2. Create a function that multiplies two numbers.
  3. Create functions to filter falsy and truthy values from a given array.

Make sure you export these functions using ESM syntax so that they can be properly tested.