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
96
Advanced JS Crash Course
ambethia
1
390
Ruby for the Newbie
ambethia
2
130
A naïve introduction to mruby
ambethia
3
830
Other Decks in Programming
See All in Programming
DMMを支える決済基盤の技術的負債にどう立ち向かうか / Addressing Technical Debt in Payment Infrastructure
yoshiyoshifujii
3
390
“いい感じ“な定量評価を求めて - Four Keysとアウトカムの間の探求 -
nealle
2
12k
はじめてのWeb API体験 ー 飲食店検索アプリを作ろうー
akinko_0915
0
140
レトロゲームから学ぶ通信技術の歴史
kimkim0106
0
110
Rails Frontend Evolution: It Was a Setup All Along
skryukov
0
280
Claude Code派?Gemini CLI派? みんなで比較LT会!_20250716
junholee
1
520
코딩 에이전트 체크리스트: Claude Code ver.
nacyot
0
930
dbt民主化とLLMによる開発ブースト ~ AI Readyな分析サイクルを目指して ~
yoshyum
3
1.1k
テストから始めるAgentic Coding 〜Claude Codeと共に行うTDD〜 / Agentic Coding starts with testing
rkaga
15
5.6k
Porting a visionOS App to Android XR
akkeylab
0
680
状態遷移図を書こう / Sequence Chart vs State Diagram
orgachem
PRO
2
200
AIエージェントはこう育てる - GitHub Copilot Agentとチームの共進化サイクル
koboriakira
0
750
Featured
See All Featured
Building Better People: How to give real-time feedback that sticks.
wjessup
367
19k
How to Think Like a Performance Engineer
csswizardry
25
1.7k
CSS Pre-Processors: Stylus, Less & Sass
bermonpainter
357
30k
Fight the Zombie Pattern Library - RWD Summit 2016
marcelosomers
233
17k
Designing Experiences People Love
moore
142
24k
Learning to Love Humans: Emotional Interface Design
aarron
273
40k
個人開発の失敗を避けるイケてる考え方 / tips for indie hackers
panda_program
108
19k
How STYLIGHT went responsive
nonsquared
100
5.6k
Fireside Chat
paigeccino
37
3.5k
Fantastic passwords and where to find them - at NoRuKo
philnash
51
3.3k
Scaling GitHub
holman
460
140k
Responsive Adventures: Dirty Tricks From The Dark Corners of Front-End
smashingmag
251
21k
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