UNPKG

pxt-core

Version:

Microsoft MakeCode provides Blocks / JavaScript / Python tools and editors

18 lines (13 loc) 284 B
# Loops ```cards for(let i = 0; i <= 5; i++) {} while(true) {} for(let i= 0; i < 5; i++) {} for(let value of [""]) {} ``` ### #specific ## See also #seealso [for](/blocks/loops/for), [while](/blocks/loops/while), [repeat](/blocks/loops/repeat), [for of](/blocks/loops/for-of),