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
Sponsored
·
SiteGround - Reliable hosting with speed, security, and support you can count on.
→
darrenyaoyaoyao
October 27, 2020
Programming
0
92
Javasrcipt_基礎一.pdf
darrenyaoyaoyao
October 27, 2020
Tweet
Share
More Decks by darrenyaoyaoyao
See All by darrenyaoyaoyao
HTML__CSS_基礎二.pdf
darrenyaoyaoyao
0
58
Pug.pdf
darrenyaoyaoyao
0
70
Sass.pdf
darrenyaoyaoyao
0
56
jquery.pdf
darrenyaoyaoyao
1
71
0c8adb02-ade8-47bb-9939-4d45110ffefd.pdf
darrenyaoyaoyao
0
58
bootstrap.pdf
darrenyaoyaoyao
1
78
Javascript_基礎二.pdf
darrenyaoyaoyao
0
130
HTML__CSS_基礎_.pdf
darrenyaoyaoyao
0
58
HTML__CSS_基礎_.pdf
darrenyaoyaoyao
0
36
Other Decks in Programming
See All in Programming
How to stabilize UI tests using XCTest
akkeylab
0
130
new(1.26) ← これすき / kamakura.go #8
utgwkk
0
2.3k
OTP を自動で入力する裏技
megabitsenmzq
0
110
[SF Ruby Feb'26] The Silicon Heel
palkan
0
100
SourceGeneratorのマーカー属性問題について
htkym
0
200
Codex の「自走力」を高める
yorifuji
0
1.2k
Angular-Apps smarter machen mit Gen AI: Lokal und offlinefähig - Hands-on Workshop!
christianliebel
PRO
0
110
技術検証結果の整理と解析をAIに任せよう!
keisukeikeda
0
120
ロボットのための工場に灯りは要らない
watany
10
2.9k
2026年は Rust 置き換えが流行る! / 20260220-niigata-5min-tech
girigiribauer
0
240
Docコメントで始める簡単ガードレール
keisukeikeda
1
120
encoding/json/v2のUnmarshalはこう変わった:内部実装で見る設計改善
kurakura0916
0
410
Featured
See All Featured
世界の人気アプリ100個を分析して見えたペイウォール設計の心得
akihiro_kokubo
PRO
67
37k
Practical Tips for Bootstrapping Information Extraction Pipelines
honnibal
25
1.8k
Jess Joyce - The Pitfalls of Following Frameworks
techseoconnect
PRO
1
110
Ethics towards AI in product and experience design
skipperchong
2
220
Designing for Performance
lara
611
70k
The MySQL Ecosystem @ GitHub 2015
samlambert
251
13k
Become a Pro
speakerdeck
PRO
31
5.8k
The Myth of the Modular Monolith - Day 2 Keynote - Rails World 2024
eileencodes
26
3.4k
State of Search Keynote: SEO is Dead Long Live SEO
ryanjones
0
150
How to Create Impact in a Changing Tech Landscape [PerfNow 2023]
tammyeverts
55
3.3k
Agile Actions for Facilitating Distributed Teams - ADO2019
mkilby
0
150
Bridging the Design Gap: How Collaborative Modelling removes blockers to flow between stakeholders and teams @FastFlow conf
baasie
0
480
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++) { … }