hi all,
In php we can get out of the 'for'
Ex:
What is the equivalent in B4X Lang?
In php we can get out of the 'for'
Ex:
PHP:
for ($i = 0; $i < count($car); $i++) {
...
if ($car[$i] == 'bmw'){
break; //<-- I mean
}
}