$a-- Return and decrement Return $a, then decrement by one. Tags $a-- decrement Related --$a $a++ $a = 1; $b = $a--; // $a = 0, $b = 1 1.0+