bounce back and forth

This sketch makes a ball bounce back and forth on the canvas.

sketch.js

// simple bouncing from right to left
// @author fabiantheblind
var hit = false;
var w = 100;
var h = 100;
var x = 0;
var y = h/2;

function setup() {
var canvas = createCanvas(w, h);
canvas.parent('sketch');
}

function draw() {
  noStroke();
  rect(0,0,width,height);
  strokeWeight(1);
  stroke(0);
  ellipse(x, y, 10, 10);
  if (hit === true) {
    x--;
  } else {
    x++;
  }
  if (x === width) {
    hit = true;
  }
  if (x === 0) {
    hit = false;
  }

}

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>