Back

Explore Courses Blog Tutorials Interview Questions
0 votes
2 views
in Blockchain by (12.7k points)

I can run code inside a conditional if statement. I can also require a condition before running some code. Are they interchangeable or are there reasons I would choose to rely on one and not the other?

1 Answer

0 votes
by (29.5k points)

No, they are different and not interchangeable.

When an if
condition is false, the next condition/block is executed and the else block (if any) is run. Standard if/else programming logic.

require is an error-handling statement. When a required condition is false, all execution stops and the transaction is rolled back.

Browse Categories

...