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
98
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
91
Advanced JS Crash Course
ambethia
1
350
Ruby for the Newbie
ambethia
2
120
A naïve introduction to mruby
ambethia
3
780
Other Decks in Programming
See All in Programming
Contemporary Test Cases
maaretp
0
140
Kaigi on Rails 2024 〜運営の裏側〜
krpk1900
1
240
Macとオーディオ再生 2024/11/02
yusukeito
0
370
Amazon Bedrock Agentsを用いてアプリ開発してみた!
har1101
0
340
NSOutlineView何もわからん:( 前編 / I Don't Understand About NSOutlineView :( Pt. 1
usagimaru
0
340
subpath importsで始めるモック生活
10tera
0
310
エンジニアとして関わる要件と仕様(公開用)
murabayashi
0
300
3 Effective Rules for Using Signals in Angular
manfredsteyer
PRO
1
100
タクシーアプリ『GO』のリアルタイムデータ分析基盤における機械学習サービスの活用
mot_techtalk
4
1.5k
cmp.Or に感動した
otakakot
3
200
EMになってからチームの成果を最大化するために取り組んだこと/ Maximize team performance as EM
nashiusagi
0
100
3 Effective Rules for Using Signals in Angular
manfredsteyer
PRO
0
120
Featured
See All Featured
Writing Fast Ruby
sferik
627
61k
Gamification - CAS2011
davidbonilla
80
5k
The World Runs on Bad Software
bkeepers
PRO
65
11k
Code Reviewing Like a Champion
maltzj
520
39k
Statistics for Hackers
jakevdp
796
220k
Building a Scalable Design System with Sketch
lauravandoore
459
33k
Fight the Zombie Pattern Library - RWD Summit 2016
marcelosomers
232
17k
The Art of Programming - Codeland 2020
erikaheidi
52
13k
Speed Design
sergeychernyshev
25
620
Automating Front-end Workflow
addyosmani
1366
200k
VelocityConf: Rendering Performance Case Studies
addyosmani
325
24k
The Cost Of JavaScript in 2023
addyosmani
45
6.8k
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