Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR TYPESCRIPT

fruits = ["apple", "banana", "cherry"] for x in fruits: print(x) if x == "banana": break Identify output ?

fruits = ["apple", "banana", "cherry"]
for x in fruits:
  print(x) 
  if x == "banana":
    break
Source by likhithanjali.github.io #
 
PREVIOUS NEXT
Tagged: #fruits #break #Identify #output
ADD COMMENT
Topic
Name
8+1 =