JavaScript Console Log Tutorial Chrome Firefox IE Browsers

Learn to use and read output from the console.log() method in JavaScript. Handy for reading values during application development, helpful for debugging, seeing script errors and more. var mystring = “hello world”; console.log( mystring ); Google Chrome – Ctrl + Shift + J Firefox – Ctrl + Shift + K IE – F12 Key then […]

Read More

JavaScript prototype Tutorial Add Object Method and Property to Class

Lesson Code: http://www.developphp.com/video/JavaScript/prototype-Tutorial-Add-Object-Methods-and-Properties-to-Class The JavaScript prototype property allows us to add specialized methods and properties to our custom objects and classes. There may be occasions when you must specialize the functionality of an object in your application, and the prototype property allows us to do that. It also enables Object Inheritance in JavaScript, which we […]

Read More

Canvas Bootcamp 3 – Line Styles for Lines and Strokes

Lesson Code: http://www.developphp.com/video/JavaScript/Line-Styles-for-Lines-and-Strokes In this third exercise we will focus on line styles. There are several properties in JavaScript available that allow us to manipulate the way lines and strokes appear on our canvas element. Create dashed lines, offset dashes, miter effects, rounded effects and more. Source by [author_name] Social Hero Media is your Edmonton […]

Read More