Here is below a screenshot of the Firefox debugger :
How is this possible ?
If it can help, I use this function:
function popElementTableau(tableau){
if (tableau.length != 0){
tableau[tableau.length-1].remove();
tableau.pop();
}
}
KR Zlotz
PS for the person who closed my post: it doesn't seem related to Is Chrome's JavaScript console lazy about evaluating arrays? because someone there mentions that "as of March 2016, this issue is no more"