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
bucles.pdf
Search
marco contreraas
April 09, 2023
Programming
0
210
bucles.pdf
marco contreraas
April 09, 2023
Tweet
Share
More Decks by marco contreraas
See All by marco contreraas
M6 hito I
enidev911
0
24
M6 hito III
enidev911
0
17
postgres-instalacion-windows.pdf
enidev911
0
290
instalación Python
enidev911
0
440
Libreta_apuntes.pdf
enidev911
0
14
Other Decks in Programming
See All in Programming
バッチを作らなきゃとなったときに考えること
irof
2
560
Swift Testingのモチベを上げたい
stoticdev
2
220
PRレビューのお供にDanger
stoticdev
1
240
Djangoにおける複数ユーザー種別認証の設計アプローチ@DjangoCongress JP 2025
delhi09
PRO
4
510
LINE messaging APIを使ってGoogleカレンダーと連携した予約ツールを作ってみた
takumakoike
0
140
Boost Performance and Developer Productivity with Jakarta EE 11
ivargrimstad
0
1.1k
iOSでQRコード生成奮闘記
ktcryomm
2
140
Jasprが凄い話
hyshu
0
190
Boos Performance and Developer Productivity with Jakarta EE 11
ivargrimstad
0
670
Modern Angular with Signals and Signal StoreNew Rules for Your Architecture @bastacon 2025 in Frankfurt
manfredsteyer
PRO
0
110
JAWS Days 2025のインフラ
komakichi
1
360
CDKを使ったPagerDuty連携インフラのテンプレート化
shibuya_shogo
0
120
Featured
See All Featured
ReactJS: Keep Simple. Everything can be a component!
pedronauck
666
120k
The Cost Of JavaScript in 2023
addyosmani
47
7.5k
Design and Strategy: How to Deal with People Who Don’t "Get" Design
morganepeng
129
19k
Designing Dashboards & Data Visualisations in Web Apps
destraynor
231
53k
Dealing with People You Can't Stand - Big Design 2015
cassininazir
366
25k
How to Think Like a Performance Engineer
csswizardry
22
1.4k
Rails Girls Zürich Keynote
gr2m
94
13k
Code Reviewing Like a Champion
maltzj
521
39k
Being A Developer After 40
akosma
89
590k
How to train your dragon (web standard)
notwaldorf
91
5.9k
Into the Great Unknown - MozCon
thekraken
35
1.7k
Optimizing for Happiness
mojombo
377
70k
Transcript
> Valor de i: 0 inicio i = 0 ¿Es
(i < 5) ? fin Si No i++ console.log("Valor de i:", i);
> Valor de i: 0 inicio i = 1 ¿Es
(i < 5) ? fin Si No i++ console.log("Valor de i:", i); Valor de i: 1
> Valor de i: 0 inicio i = 2 ¿Es
(i < 5) ? fin Si No i++ console.log("Valor de i:", i); Valor de i: 1 Valor de i: 2
> Valor de i: 0 inicio i = 3 ¿Es
(i < 5) ? fin Si No i++ console.log("Valor de i:", i); Valor de i: 1 Valor de i: 2 Valor de i: 3
Valor de i: 0 inicio i = 4 ¿Es (i
< 5) ? fin Si No i++ console.log("Valor de i:", i); Valor de i: 1 Valor de i: 2 Valor de i: 3 Valor de i: 4
Valor de i: 0 inicio i = 5 ¿Es (i
< 5) ? fin Si No i++ console.log("Valor de i:", i); Valor de i: 1 Valor de i: 2 Valor de i: 3 Valor de i: 4