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
Javasrcipt_基礎一.pdf
Search
darrenyaoyaoyao
October 27, 2020
Programming
0
87
Javasrcipt_基礎一.pdf
darrenyaoyaoyao
October 27, 2020
Tweet
Share
More Decks by darrenyaoyaoyao
See All by darrenyaoyaoyao
HTML__CSS_基礎二.pdf
darrenyaoyaoyao
0
52
Pug.pdf
darrenyaoyaoyao
0
59
Sass.pdf
darrenyaoyaoyao
0
52
jquery.pdf
darrenyaoyaoyao
1
59
0c8adb02-ade8-47bb-9939-4d45110ffefd.pdf
darrenyaoyaoyao
0
49
bootstrap.pdf
darrenyaoyaoyao
1
74
Javascript_基礎二.pdf
darrenyaoyaoyao
0
120
HTML__CSS_基礎_.pdf
darrenyaoyaoyao
0
51
HTML__CSS_基礎_.pdf
darrenyaoyaoyao
0
31
Other Decks in Programming
See All in Programming
マンガアプリViewerの大画面対応を考える
kk__777
0
390
Reactive Thinking with Signals and the Resource API
manfredsteyer
PRO
0
120
オンデバイスAIとXcode
ryodeveloper
0
260
実践Claude Code:20の失敗から学ぶAIペアプログラミング
takedatakashi
18
9k
Server Side Kotlin Meetup vol.16: 内部動作を理解して ハイパフォーマンスなサーバサイド Kotlin アプリケーションを書こう
ternbusty
3
260
AI Agent 時代的開發者生存指南
eddie
4
2.2k
SwiftDataを使って10万件のデータを読み書きする
akidon0000
0
240
AI 駆動開発におけるコミュニティと AWS CDK の価値
konokenj
5
290
エンジニアインターン「Treasure」とHonoの2年、そして未来へ / Our Journey with Hono Two Years at Treasure and Beyond
carta_engineering
0
440
Blazing Fast UI Development with Compose Hot Reload (Bangladesh KUG, October 2025)
zsmb
1
330
GC25 Recap: The Code You Reviewed is Not the Code You Built / #newt_gophercon_tour
mazrean
0
120
pnpm に provenance のダウングレード を検出する PR を出してみた
ryo_manba
1
160
Featured
See All Featured
A Modern Web Designer's Workflow
chriscoyier
697
190k
Put a Button on it: Removing Barriers to Going Fast.
kastner
60
4k
Improving Core Web Vitals using Speculation Rules API
sergeychernyshev
21
1.2k
10 Git Anti Patterns You Should be Aware of
lemiorhan
PRO
658
61k
The Success of Rails: Ensuring Growth for the Next 100 Years
eileencodes
46
7.7k
The Cult of Friendly URLs
andyhume
79
6.6k
Building Adaptive Systems
keathley
44
2.8k
Designing Dashboards & Data Visualisations in Web Apps
destraynor
231
53k
How to train your dragon (web standard)
notwaldorf
97
6.3k
Bash Introduction
62gerente
615
210k
Reflections from 52 weeks, 52 projects
jeffersonlam
355
21k
Let's Do A Bunch of Simple Stuff to Make Websites Faster
chriscoyier
508
140k
Transcript
Javascript 基礎⼀ 控制網⾴的基礎
變數宣告 使⽤ var 宣告變數 var a = 5;
變數型態 數字 int 字串 string 布林值 boolean
= 與 == 的不同 = 是賦予數值 == 才是中⽂理解的等於
舉例 var a = 5; var b = a ==
5; 印出 b 會發現是 true
條件判斷 If ( XXXX ) { … } else if
{ … } else { … }
for 迴圈 for (var i = 0 ; i <
10 ; i++) { … }