Skip to content

Latest commit

 

History

History
25 lines (22 loc) · 189 Bytes

File metadata and controls

25 lines (22 loc) · 189 Bytes

Test case: increment update

JavaScript:

a++
++b

Python:

a += 1
b += 1

Test case: decrement update

JavaScript:

a--
--b

Python:

a -= 1
b -= 1