open_in_new
content_copy
//Postfix: let i = 0 i++ // 0 // i === 1 //Prefix: let i = 0 ++i // 1 // i === 1