for loops

Filling the canas with two for loops. Creating an array of circles.

sketch.js

var val = 1;
// getting started with p5js
function setup(){
  // executed once
var canvas = createCanvas(400,400);
canvas.parent('sketch');
  for(var x = 0; x < width;x +=5 ){
    for(var y = 0; y <height; y += 5){

    ellipse(x, y, 5,5);
    }
  }
  // var counter = 0;
  // while(counter < 100){
  //   console.log(counter);
  //   counter++;
  // }

}


function draw(){
  // executed all the time

}

index.html

<!doctype html>
<html lang="en">
  <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    <title>{page.title}</title>
    <meta name="description" content="something">
    <meta name="author" content="me">
  </head>
  <body>
    <script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/0.4.17/p5.min.js"></script>
    <script type="text/javascript" src="sketch.js"></script>
    <div id="sketch"></div>
    </body>
  </html>