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
ProxyによるWindow間RPC機構の構築
syumai
3
1.2k
Navigation 2 を 3 に移行する(予定)ためにやったこと
yokomii
0
350
MCPでVibe Working。そして、結局はContext Eng(略)/ Working with Vibe on MCP And Context Eng
rkaga
5
2.3k
アルテニア コンサル/ITエンジニア向け 採用ピッチ資料
altenir
0
110
CloudflareのChat Agent Starter Kitで簡単!AIチャットボット構築
syumai
2
510
@Environment(\.keyPath)那么好我不允许你们不知道! / atEnvironment keyPath is so good and you should know it!
lovee
0
130
請來的 AI Agent 同事們在寫程式時,怎麼用 pytest 去除各種幻想與盲點
keitheis
0
130
複雑なフォームに立ち向かう Next.js の技術選定
macchiitaka
2
240
Ruby×iOSアプリ開発 ~共に歩んだエコシステムの物語~
temoki
0
350
もうちょっといいRubyプロファイラを作りたい (2025)
osyoyu
1
460
HTMLの品質ってなんだっけ? “HTMLクライテリア”の設計と実践
unachang113
4
2.9k
旅行プランAIエージェント開発の裏側
ippo012
2
930
Featured
See All Featured
Bootstrapping a Software Product
garrettdimon
PRO
307
110k
Typedesign – Prime Four
hannesfritz
42
2.8k
The Myth of the Modular Monolith - Day 2 Keynote - Rails World 2024
eileencodes
26
3k
No one is an island. Learnings from fostering a developers community.
thoeni
21
3.4k
jQuery: Nuts, Bolts and Bling
dougneiner
64
7.9k
Facilitating Awesome Meetings
lara
55
6.5k
Templates, Plugins, & Blocks: Oh My! Creating the theme that thinks of everything
marktimemedia
31
2.5k
It's Worth the Effort
3n
187
28k
Statistics for Hackers
jakevdp
799
220k
Code Reviewing Like a Champion
maltzj
525
40k
"I'm Feeling Lucky" - Building Great Search Experiences for Today's Users (#IAC19)
danielanewman
229
22k
Build The Right Thing And Hit Your Dates
maggiecrowley
37
2.9k
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