Sorry if this is a silly question...I tried searching everywhere and couldn't find what I was looking for...what does (append = false) mean in javascript?
myImages(append = false) {
    if (n>10) {
           console.log("Pass");
    }
    else {
        console.log("Failed");
    }   
};
