What will be the output of the following JS code snippet?
var a = 1; var b = 0; while (a <= 3) { a++; b += a * 2; print(b); }
नीचे दिए गए JS कोड का आउटपुट क्या होगा?