Coder Social home page Coder Social logo

array-iteration's Introduction

ARRAY ITERATION

Iterate literally means 'to perform repeatedly'. While human beings get bored of doing something repeatedly, machines excel at it.

To "iterate over a list" (or an array in JavaScript) means to perform the same task over and over again, once for each item in the list.

To iterate over an array, we use a for loop in additon with the .length propery for JavaScript arrays. An example transveral can be seen below.

var myList = ["item 1", "item 2", "item 3", "item 4", "item 5", "item 6"]
for(var i = 0; i < myList.length; i++){
  console.log(myList[i])
}

The for loop iterates for the entire length of the list. The value of i (which can be any word you want) is the position in the list where you are at. So the console will log each item in the list for the example shown above

TASK

To complete today's task, open the script.js file and follow the directions to print various statements to the console.

array-iteration's People

Contributors

stevenjlance avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.