Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

PARIS - ESTELLE & JULES F. - FUNCTIONS AND ARRAYS#757

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 ourterms of service andprivacy statement. We’ll occasionally send you account related emails.

Already on GitHub?Sign in to your account

Closed
F-Jules wants to merge1 commit intoironhack-labs:masterfromF-Jules:master

Conversation

F-Jules
Copy link

@wnski

}

console.log(averageWordLength(wordsArr));

Choose a reason for hiding this comment

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

Ok, this is working. Here is another way to do it that I find easier to understand:

function averageWordLength(array) {  if (array.length === 0) {    return undefined;  }  var sumLetters = 0;  for (var i = 0; i < array.length; i++) {    sumLetters += array[i].length;  }  return sumLetters / array.length;}

@ta-web-paris
Copy link

That's good! You understood the concepts and your code is clear and easy to understand. Continue this way!

Sign up for freeto join this conversation on GitHub. Already have an account?Sign in to comment
Reviewers

@ta-web-parista-web-parista-web-paris left review comments

Assignees
No one assigned
Labels
None yet
Projects
None yet
Milestone
No milestone
Development

Successfully merging this pull request may close these issues.

2 participants
@F-Jules@ta-web-paris

[8]ページ先頭

©2009-2025 Movatter.jp