Skip to content

Latest commit

 

History

History
10 lines (9 loc) · 137 Bytes

File metadata and controls

10 lines (9 loc) · 137 Bytes

Test case: tenary expression

JavaScript:

let tmp = flag == true ? 10: 0;

Python:

tmp = 10 if flag == True else 0