Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

my solutions #5

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

danielstanojevic
Copy link

@jaybobo
Please check my solution.

@@ -0,0 +1,5 @@
var pets = ['cat', 'dog', 'rat'];
for(i=0; i<pets.length; i++){
Copy link
Member

Choose a reason for hiding this comment

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

cool. an optimization here is...

var cached = pets.length
for(var i=0;i<cached;i++){

theres also something important to remember here. if you don't specify var i in your loop you're declaring window.i which can cause all types of havoc.

@jaybobo
Copy link
Member

jaybobo commented Apr 11, 2015

looks good. 👍

see my comments.

@danielstanojevic
Copy link
Author

Thanks for reviewing and for the good advice.
On Apr 11, 2015 7:30 PM, "jaybobo" [email protected] wrote:

looks good. [image: 👍]

see my comments.


Reply to this email directly or view it on GitHub
#5 (comment)
.

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

Successfully merging this pull request may close these issues.

2 participants