VICTOR OMONDI Posted on Jan 11, 2020 Ternary operator in Python vs Javascript #ternaryoperator #python #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 Top comments (0) Subscribe Code of Conduct • Report abuse For further actions, you may consider blocking this person and/or reporting abuse
Top comments (0)