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
830
Other Decks in Programming
See All in Programming
Portapad紹介プレゼンテーション
gotoumakakeru
1
130
私の後悔をAWS DMSで解決した話
hiramax
4
180
Claude Codeで実装以外の開発フロー、どこまで自動化できるか?失敗と成功
ndadayo
3
1.8k
Processing Gem ベースの、2D レトロゲームエンジンの開発
tokujiros
2
120
MLH State of the League: 2026 Season
theycallmeswift
0
210
AIを活用し、今後に備えるための技術知識 / Basic Knowledge to Utilize AI
kishida
13
3.4k
Azure SRE Agentで運用は楽になるのか?
kkamegawa
0
950
AHC051解法紹介
eijirou
0
640
A Gopher's Guide to Vibe Coding
danicat
0
200
Vue・React マルチプロダクト開発を支える Vite
andpad
0
110
SOCI Index Manifest v2が出たので調べてみた / Introduction to SOCI Index Manifest v2
tkikuc
1
120
AIエージェント開発、DevOps and LLMOps
ymd65536
1
370
Featured
See All Featured
Gamification - CAS2011
davidbonilla
81
5.4k
Designing for Performance
lara
610
69k
Music & Morning Musume
bryan
46
6.8k
Side Projects
sachag
455
43k
CSS Pre-Processors: Stylus, Less & Sass
bermonpainter
358
30k
How To Stay Up To Date on Web Technology
chriscoyier
790
250k
XXLCSS - How to scale CSS and keep your sanity
sugarenia
248
1.3M
Automating Front-end Workflow
addyosmani
1370
200k
Site-Speed That Sticks
csswizardry
10
800
RailsConf & Balkan Ruby 2019: The Past, Present, and Future of Rails at GitHub
eileencodes
139
34k
We Have a Design System, Now What?
morganepeng
53
7.8k
Into the Great Unknown - MozCon
thekraken
40
2k
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