1.

Mention The Structural Expressions In Kotlin?

Answer»

There are three STRUCTURAL expressions in Kotlin.

They are:

  • Return: It returns from the nearest enclosing FUNCTION or anonymous function by default.
  • BREAK: This expression terminates the closest enclosing loop.
  • Continue: This expression PROCEEDS you to the next closest enclosing loop.

There are three Structural expressions in Kotlin.

They are:



Discussion

No Comment Found