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

Conversation

@MJGz
Copy link

@MJGz MJGz commented Feb 29, 2016

Added some alternative code. Added files strings.js

MJGz added 6 commits February 28, 2016 18:52
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