Test case: increment update JavaScript: a++ ++b Python: a += 1 b += 1 Test case: decrement update JavaScript: a-- --b Python: a -= 1 b -= 1