typesafe

Typesafe comparison === vs ==

sketch.js

// getting started with p5js
function setup(){
  // executed once
var canvas = createCanvas(100,100);
canvas.parent('sketch');
  text("just look into\nthe console", 10,10);
  if("1" === 1){
    console.log("This is the same");
  }else{
    console.log("This is not the same");
  }
  if("1" == 1){
    console.log("Hm. A string is the same as the number one?\nThis can't be...");
  }
}
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>