โž•comma operator (,)

JS โŸฉ statement โŸฉ expression โŸฉ operator โŸฉ binary โŸฉ comma (,)

',' punctuator used in declaration syntax and comma operator.

for(let i=0, j=10; i < j; i++, j-- ) { ... }
//  โ•ฐโ”€โ”€โ”€โ”€ 1 โ”€โ”€โ”€โ”€โ•ฏ         โ•ฐโ”€โ”€ 2 โ”€โ”€โ•ฏ
// 1. let declaration
// 2. comma operator

Last updated

Was this helpful?