Dein Suchergebnis zum Thema: "<b

Boolean

https://makecode.calliope.cc/blocks/logic/boolean

A Boolean has one of two possible values: true or false. Boolean (logical) operators (and, or, not) take Boolean inputs and make another Boolean value. Comparison operators on other types (numbers, strings) create Boolean values.
For example: let a = 5 let b = 87 if (a < b) { a += 1 } while (a < b) { a += 1