DEV Community

VICTOR OMONDI
VICTOR OMONDI

Posted on

 

Ternary operator in Python vs Javascript

Python

result = [on_True] if (condition) else [on_False]
Enter fullscreen mode Exit fullscreen mode

Javascript

let result = (condition) ? [on_true] : [on_false]
Enter fullscreen mode Exit fullscreen mode

Oldest comments (0)

Visualizing Promises and Async/Await 🤯

async await

☝️ Check out this all-time classic DEV post