Skip to content

Instantly share code, notes, and snippets.

View misspee007's full-sized avatar
🥔

Precious Abubakar misspee007

🥔
View GitHub Profile
@alexhawkins
alexhawkins / eloquentJavaScript.js
Last active September 28, 2023 12:25
Solutions for Eloquent Javascript Chapter 3, 4 Exercises (Functions, Arrays, Objects)
'use strict';
/****************************************
* Chapter 3 Exercises: Functions
*****************************************
#EXERCISE 1: Minimum
The previous chapter introduced the standard function Math.min that returns
its smallest argument. We can do that ourselves now. Write a function min that