Upgrade to Pro
— share decks privately, control downloads, hide ads and more …
Speaker Deck
Features
Speaker Deck
PRO
Sign in
Sign up for free
Search
Search
Intro to Javascript
Search
Jason L Perry
July 01, 2015
Programming
1
100
Intro to Javascript
Workshop Code:
http://codepen.io/ambethia/pen/wamjRj
Jason L Perry
July 01, 2015
Tweet
Share
More Decks by Jason L Perry
See All by Jason L Perry
Tomorrow's Javascript, Today.
ambethia
0
98
Advanced JS Crash Course
ambethia
1
410
Ruby for the Newbie
ambethia
2
130
A naïve introduction to mruby
ambethia
3
840
Other Decks in Programming
See All in Programming
iOSエンジニア向けの英語学習アプリを作る!
yukawashouhei
0
200
CSC305 Lecture 06
javiergs
PRO
0
220
All About Angular's New Signal Forms
manfredsteyer
PRO
0
120
なぜGoのジェネリクスはこの形なのか? Featherweight Goが明かす設計の核心
ryotaros
7
1.1k
Cursorハンズオン実践!
eltociear
2
1k
Swift Concurrency - 状態監視の罠
objectiveaudio
2
520
monorepo の Go テストをはやくした〜い!~最小の依存解決への道のり~ / faster-testing-of-monorepos
convto
2
480
理論と実務のギャップを超える
eycjur
0
130
Web フロントエンドエンジニアに開かれる AI Agent プロダクト開発 - Vercel AI SDK を観察して AI Agent と仲良くなろう! #FEC余熱NIGHT
izumin5210
3
520
After go func(): Goroutines Through a Beginner’s Eye
97vaibhav
0
380
タスクの特性や不確実性に応じた最適な作業スタイルの選択(ペアプロ・モブプロ・ソロプロ)と実践 / Optimal Work Style Selection: Pair, Mob, or Solo Programming.
honyanya
3
160
技術的負債の正体を知って向き合う / Facing Technical Debt
irof
0
170
Featured
See All Featured
Typedesign – Prime Four
hannesfritz
42
2.8k
Fashionably flexible responsive web design (full day workshop)
malarkey
407
66k
The Invisible Side of Design
smashingmag
302
51k
Designing Experiences People Love
moore
142
24k
Dealing with People You Can't Stand - Big Design 2015
cassininazir
367
27k
Design and Strategy: How to Deal with People Who Don’t "Get" Design
morganepeng
132
19k
How to train your dragon (web standard)
notwaldorf
96
6.3k
KATA
mclloyd
32
15k
Leading Effective Engineering Teams in the AI Era
addyosmani
2
320
How to Ace a Technical Interview
jacobian
280
24k
Designing for humans not robots
tammielis
254
26k
個人開発の失敗を避けるイケてる考え方 / tips for indie hackers
panda_program
114
20k
Transcript
None
Introduction to Javascript
What is JAVASCRIPT?
“ProgramMing Language”
None
None
None
None
None
None
None
None
None
Real World JAVASCRIPT
None
None
BACKEND (Server-side) APpLICATIONS
None
Mobile & DESKTOP ApPlications
None
GAMES
None
None
JAVASCRIPT Syntax
2 + 2;
2 + 2; // -> 4
// This is a comment
var x = 5;
x * 2; // -> 10
var s = "a string of characters.”;
s.toUpperCase(); // -> "A STRING OF CHARACTERS."
var hello = function() { console.log("Hello, World!); };
hello(); > "Hello, World!"
var greet = function(name) { “Hello, ” + name +
“.”; }; greet(“Jason”); // > "Hello, Jason."
setInterval(function() { greet(“Jason”); }, 1000);
None
HandS on
None
None
Let’s Code! http://ow.ly/P3U1y
None
None
None
@ambethia