Skip to content
This repository has been archived by the owner on Nov 7, 2020. It is now read-only.

Master #107

Open
wants to merge 6 commits into
base: master
Choose a base branch
from
Open

Master #107

wants to merge 6 commits into from

Conversation

MJGz
Copy link

@MJGz MJGz commented Feb 29, 2016

Added some alternative code. Added files strings.js

Added other solutions using recent language features
Added alternate async() that does not use jQuery
    if (num % (3*5) === 0) {
is equivalent to (because 3 and 5 are primes)
    if (num % 3 === 0 && num % 5 === 0) {
Added alternate code for argsAsArray(), speak(), makeClosures(), useArguments(), callIt(), partialUsingArguments(), and curryIt().
Added alternate code for listFiles(). Added code for fibonacci() and validParentheses().
@@ -1,11 +1,19 @@
purge

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

why that purge?

@rmurphey
Copy link
Owner

I'd welcome this change if the alternative code was uncommented, using the native Array methods if available and then falling back to the existing code if not.

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants