Câu trả lời:
#new_record?
không chỉ thế
object.new_record?
Vòng đời đối tượng ActiveRecord:
1. kỷ lục mới
item = Item.new
item.new_record? #=> true
2. kiên trì
item.save
item.persisted? #=> true
3. đã thay đổi
item.name = "other"
item.changed? #=> true
4. bị phá hủy
item.destroy
item.destroyed? #=> true