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
83
Javasrcipt_基礎一.pdf
darrenyaoyaoyao
October 27, 2020
Tweet
Share
More Decks by darrenyaoyaoyao
See All by darrenyaoyaoyao
HTML__CSS_基礎二.pdf
darrenyaoyaoyao
0
51
Pug.pdf
darrenyaoyaoyao
0
59
Sass.pdf
darrenyaoyaoyao
0
52
jquery.pdf
darrenyaoyaoyao
1
58
0c8adb02-ade8-47bb-9939-4d45110ffefd.pdf
darrenyaoyaoyao
0
48
bootstrap.pdf
darrenyaoyaoyao
1
73
Javascript_基礎二.pdf
darrenyaoyaoyao
0
110
HTML__CSS_基礎_.pdf
darrenyaoyaoyao
0
51
HTML__CSS_基礎_.pdf
darrenyaoyaoyao
0
31
Other Decks in Programming
See All in Programming
202507_ADKで始めるエージェント開発の基本 〜デモを通じて紹介〜(奥田りさ)The Basics of Agent Development with ADK — A Demo-Focused Introduction
risatube
PRO
6
1.4k
Claude Code で Astro blog を Pages から Workers へ移行してみた
codehex
0
170
AWS Summit Japan 2024と2025の比較/はじめてのKiro、今あなたは岐路に立つ
satoshi256kbyte
1
260
decksh - a little language for decks
ajstarks
4
21k
MySQL9でベクトルカラム登場!PHP×AWSでのAI/類似検索はこう変わる
suguruooki
1
280
SQLアンチパターン第2版 データベースプログラミングで陥りがちな失敗とその対策 / Intro to SQL Antipatterns 2nd
twada
PRO
36
11k
なぜ今、Terraformの本を書いたのか? - 著者陣に聞く!『Terraformではじめる実践IaC』登壇資料
fufuhu
3
390
NEWT Backend Evolution
xpromx
1
170
kiroでゲームを作ってみた
iriikeita
0
140
Bedrock AgentCore ObservabilityによるAIエージェントの運用
licux
8
560
Amazon Q CLI開発で学んだAIコーディングツールの使い方
licux
3
170
リッチエディターを安全に開発・運用するために
unachang113
1
350
Featured
See All Featured
Balancing Empowerment & Direction
lara
1
530
Mobile First: as difficult as doing things right
swwweet
223
9.9k
Faster Mobile Websites
deanohume
308
31k
The Illustrated Children's Guide to Kubernetes
chrisshort
48
50k
Connecting the Dots Between Site Speed, User Experience & Your Business [WebExpo 2025]
tammyeverts
8
420
Bootstrapping a Software Product
garrettdimon
PRO
307
110k
Practical Orchestrator
shlominoach
190
11k
[RailsConf 2023] Rails as a piece of cake
palkan
56
5.7k
Stop Working from a Prison Cell
hatefulcrawdad
271
21k
A Modern Web Designer's Workflow
chriscoyier
695
190k
RailsConf 2023
tenderlove
30
1.2k
Statistics for Hackers
jakevdp
799
220k
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++) { … }