http://codepen.io/anon/pen/zqbpNO?editors=0010
As developers we need to be able to interact with out object and see what's going on inside them. We can use a console.log
to get data out of the code we write.
var name = 'brian';
console.log("Hello, ", name);