To use this website fully, you first need to accept the use of cookies. By agreeing to the use of cookies you consent to the use of functional cookies. For more information read this page.

Official ZPE/YASS documentationdo_nothing

do_nothing () ⇒ null

A very special function that returns null.

First available: Version 1.6.3

Using do_nothing

At first glance the do_nothing function appears to be useless or at least only useful for giving back a null value but as a matter of fact it has another major use.

The other major use is for use within single line ternary if statements:

YASS
if(10 > 5 ? print("Yes") : do_nothing());
    
Comments
Code previewClose
Feedback 👍
Comments are sent via email to me.