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
Temporal Knowledge Graphで作る! 時間変化するナレッジを扱うAI Agentの世界
po3rin
5
1.2k
Kotlinで実装するCPU/GPU 「協調的」パフォーマンス管理
matuyuhi
0
260
AIと人間の共創開発!OSSで試行錯誤した開発スタイル
mae616
2
870
CSC305 Lecture 11
javiergs
PRO
0
320
iOSでSVG画像を扱う
kishikawakatsumi
0
180
Dive into Triton Internals
appleparan
0
420
マイベストのシンプルなデータ基盤の話 - Googleスイートとのつき合い方 / mybest-simple-data-architecture-google-nized
snhryt
0
120
CSC305 Lecture 10
javiergs
PRO
0
330
スキーマ駆動で、Zod OpenAPI Honoによる、API開発するために、Hono Takibiというライブラリを作っている
nakita628
0
330
GitHub Copilotを使いこなせ!/mastering_github_copilot!
kotakageyama
2
740
Blazing Fast UI Development with Compose Hot Reload (droidcon London 2025)
zsmb
0
450
モテるデスク環境
mozumasu
3
1.4k
Featured
See All Featured
YesSQL, Process and Tooling at Scale
rocio
174
15k
Imperfection Machines: The Place of Print at Facebook
scottboms
269
13k
Learning to Love Humans: Emotional Interface Design
aarron
274
41k
Art, The Web, and Tiny UX
lynnandtonic
303
21k
Done Done
chrislema
186
16k
How GitHub (no longer) Works
holman
315
140k
The Psychology of Web Performance [Beyond Tellerrand 2023]
tammyeverts
49
3.2k
A designer walks into a library…
pauljervisheath
209
24k
The Invisible Side of Design
smashingmag
302
51k
Designing for Performance
lara
610
69k
jQuery: Nuts, Bolts and Bling
dougneiner
65
7.9k
Creating an realtime collaboration tool: Agile Flush - .NET Oxford
marcduiker
34
2.3k
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++) { … }