IMarty

45
reputation
1
8
let alive = happy = true, iteration = 5;
while(alive && happy){
    // 1 month : Front-End teacher in a bootcamp code school
    // 3 months : full stack JS dev creating WebApp, webSite, games, electronic prototype.
    iteration++;
    if (iteration % 3 == 0) 
        happyNewYear();
}
function happyNewYear(){
    alert("1<3U411");
}