• Stars
    star
    1
  • Language
    JavaScript
  • Created over 1 year ago
  • Updated over 1 year ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

You will be provided with an initial array (the first argument in the destroyer function), followed by one or more arguments. Remove all elements from the initial array that are of the same value as these arguments. Note: You have to use the arguments object.

More Repositories

1

walkify

walkifyjs - Simple and lightweight Javascript routing library for building interactive single page applications.
JavaScript
8
star
2

telegram-shopping

A telegram web based shopping app
JavaScript
6
star
3

formCatcher

formCatcherjs - a lightweight javascript library for form validations
JavaScript
5
star
4

vue-shopping-cart-demo

a simple shopping cart demo with vuejs and Easystorage.js
JavaScript
4
star
5

easyStorage

a simple and flexible library for localStorage api. features include CRUD operations using ORM like syntax, real time update across tabs included!
JavaScript
3
star
6

js-image-compress

reduce image file size & quality with javascript without reducing the aspect ratio
HTML
2
star
7

mp3-tagger

simple mp3tagger with js. it allows you to merge two audios together
CSS
2
star
8

caculator

simple calculator with js, built with mobile phone. design inspired by Google andriod calculator
JavaScript
2
star
9

first-javascript-add-to-cart

my first javascript add to cart project
CSS
2
star
10

video-screenshot

a simple file demostrating how to capture and extract screenshot from both uploaded and already existing videos in the dom
JavaScript
2
star
11

db-sentry

Laravel Helper package that backs up the Mysql database specified in env file and returns it
PHP
2
star
12

Examsystem

a simple exam system with vue. allows user to take exams online
JavaScript
2
star
13

iblogg

Iblogg - iblogg is single page web application (spa) blog built with walkifyjs and codeigniter4
PHP
2
star
14

pageWalker

an experimental javascript routing library
JavaScript
2
star
15

music-playlist

music playlist using javascript and indexdb
JavaScript
2
star
16

formCatcher-demo

formCatcher-demo - a validation demo for formCatcher.js library
JavaScript
2
star
17

Nobledsmarts.github.io

JavaScript
2
star
18

php-pager

a simple PHP library that generates pagination lists
PHP
2
star
19

mtfe

HTML
2
star
20

walkify-doc

documentation for walkifyjs
JavaScript
2
star
21

platifyJs

a simple lightweight open source templating library in JavaScript
JavaScript
1
star
22

cretigram

(WIP)
JavaScript
1
star
23

chatterpets

(WIP)
1
star
24

obidient-support

JavaScript
1
star
25

missing-letters

Find the missing letter in the passed letter range and return it. If all letters are present in the range, return undefined.
JavaScript
1
star
26

lunisupp

customer support app with quasar
JavaScript
1
star
27

lunisupp-rn

customer support app with react native
JavaScript
1
star
28

nobledsmarts

1
star
29

Stockshot

Inventory Management System with React, Typescript & Firebase
CSS
1
star
30

rempixel

A handy tool for converting to and from rem font size values according to what you set as your base font size
CSS
1
star
31

rncalc

basic calculator in react native (for learning purpose)
JavaScript
1
star
32

Everything-Be-True

Check if the predicate (second argument) is truthy on all elements of a collection (first argument).
JavaScript
1
star
33

investment-script

JavaScript
1
star
34

spinal-tap-case

Convert a string to spinal case. Spinal case is all-lowercase-words-joined-by-dashes.
JavaScript
1
star
35

shortlink

mmm
TypeScript
1
star
36

Convert-HTML-Entities

Convert the characters &, <, >, " (double quote), and ' (apostrophe), in a string to their corresponding HTML entities.
JavaScript
1
star
37

Binary-Agents

Return an English translated sentence of the passed binary string. The binary string will be space separated.
JavaScript
1
star
38

react-todo-app

simple react to do list
HTML
1
star
39

Sum-All-Odd-Fibonacci-Numbers

Given a positive integer num, return the sum of all odd Fibonacci numbers that are less than or equal to num.
JavaScript
1
star
40

diff-two-arrays

Compare two arrays and return a new array with any items only found in one of the two given arrays, but not both. In other words, return the symmetric difference of the two arrays. Note: You can return the array with its elements in any order.
JavaScript
1
star
41

chunky-monkey

Write a function that splits an array (first argument) into groups the length of size (second argument) and returns them as a two-dimensional array.
JavaScript
1
star
42

Steamroller

Flatten a nested array. You must account for varying levels of nesting.
JavaScript
1
star
43

DNA-pairing

Pairs of DNA strands consist of nucleobase pairs. Base pairs are represented by the characters AT and CG, which form building blocks of the DNA double helix.
JavaScript
1
star
44

Drop-it

Given the array arr, iterate through and remove each element starting from the first element (the 0 index) until the function func returns true when the iterated element is passed through it. Then return the rest of the array once the condition is satisfied, otherwise, arr should be returned as an empty array
JavaScript
1
star
45

Palindrome-Checker

Return true if the given string is a palindrome. Otherwise, return false. A palindrome is a word or sentence that's spelled the same way both forward and backward, ignoring punctuation, case, and spacing.
JavaScript
1
star
46

Telephone-Number-Validator

Return true if the passed string looks like a valid US phone number.
JavaScript
1
star
47

Caesars-Cipher

Write a function which takes a ROT13 encoded string as input and returns a decoded string.
JavaScript
1
star
48

Roman-Numeral-Converter

Convert the given number into a roman numeral.
JavaScript
1
star
49

wherefore-art-thou

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.
JavaScript
1
star
50

sorted-union

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.
JavaScript
1
star
51

Cash-Register

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.
JavaScript
1
star
52

pig-latin

Pig Latin is a way of altering English Words. The rules are as follows: - If a word begins with a consonant, take the first consonant or consonant cluster, move it to the end of the word, and add ay to it. - If a word begins with a vowel, just add way at the end.
JavaScript
1
star
53

Map-the-Debris

According to Kepler's Third Law, the orbital period T of two point masses orbiting each other in a circular or elliptic orbit is:
JavaScript
1
star
54

Arguments-Optional

Create a function that sums two arguments together. If only one argument is provided, then return a function that expects one argument and returns the sum.
JavaScript
1
star