Type Coercion Lab
Easy
12
55.3% Acceptance
In this lab, your task is to understand type coercion in JavaScript and perform the following tasks in the index.js
file:
- Create a function that adds two string numbers.
- Create a function that multiplies two numbers.
- 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.