an intro to js - ryan's codebar lightning talk

10

Click here to load reader

Upload: redweb-ltd

Post on 12-Apr-2017

237 views

Category:

Technology


0 download

TRANSCRIPT

Page 1: An intro to js - Ryan's codebar lightning talk

An Introduction to JavaScriptRyan Maffey

Page 2: An intro to js - Ryan's codebar lightning talk

What is JavaScript?

A client-side programming language for the web!

Page 3: An intro to js - Ryan's codebar lightning talk

Structure

Style

Behaviour

Page 4: An intro to js - Ryan's codebar lightning talk

JavaScript can make web

pages:

● Interactive

● Dynamic

● Responsive

● Ultimately, more useful!

What can I do with it?

Page 5: An intro to js - Ryan's codebar lightning talk

● Server-side

programming

● Task automation

● Games

● 3D Modeling

● Mobile applications

What can I do with it?

Page 6: An intro to js - Ryan's codebar lightning talk

How do I get started?

Learning:

● javascript.com

● Codecademy

● Mozilla Developer

Network

● Codebar coach

Page 7: An intro to js - Ryan's codebar lightning talk

Programming:

● Browser developer

tools

● Standard text editor

● .js file extension

● Include in web page

How do I get started?

Page 8: An intro to js - Ryan's codebar lightning talk

A note on jQuery

The “Write less, do more.” library

Designed to help make writing JavaScript faster and easier

Page 9: An intro to js - Ryan's codebar lightning talk

Don’t learn jQuery (yet)

Learn vanilla JavaScript first!

A note on jQuery