Skip to content
#

freecodecamp-javascript

Here are 50 public repositories matching this topic...

Design a cash register drawer function checkCashRegister() that accepts purchase price as the first argument (price), payment as the second argument (cash), and cash-in-drawer (cid) as the third argument.

  • Updated Mar 20, 2023
  • JavaScript

Make a function that looks through an array of objects (first argument) and returns an array of all objects that have matching name and value pairs (second argument). Each name and value pair of the source object has to be present in the object from the collection if it is to be included in the returned array.

  • Updated Mar 20, 2023
  • JavaScript

Here are the codes that I wrote while doing the "JavaScript Algorithms and Data Structures" course on FreeCodeCamp.com. Hope it will help you get through any problem you might face while solving the problems. PEACE :)

  • Updated Sep 14, 2023
  • JavaScript

Write a function that takes two or more arrays and returns a new array of unique values in the order of the original provided arrays. In other words, all values present from all arrays should be included in their original order, but with no duplicates in the final array.

  • Updated Mar 20, 2023
  • JavaScript

Improve this page

Add a description, image, and links to the freecodecamp-javascript topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the freecodecamp-javascript topic, visit your repo's landing page and select "manage topics."

Learn more