conditions

Here you see how to use conditions. We are using the if else and the switch statements. Take a look at the upper right corner. We added a console the this page for easier viewing.

sketch.js

var val = 1;
// getting started with p5js
function setup(){
  // executed once
  var canvas = createCanvas(300,100);
  canvas.parent('sketch');
  text("just look into\nthe console", 10,10);


  if(val === 0){
    console.log("Yes it is 0");
  }else if(val === 1){
    console.log("Yes it is 1");
  }else {
    console.log("No it is not");
  }

  switch(val){
    case 0:
    console.log("Yes it is 0");
    break;
    case 1:
    console.log("Yes it is 1");
    break;
    default:
    console.log("No it is not");
    break;

  }
}


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>