What is the most portable way to delete element from multidimensional sparse array in javascript?
Will following work well if rows can be undefined sometimes?
if( content[row] ) {
delete content[row][col];
}
Will this work and will it be better?
if( r=content[row] ) {
delete r[col];
}