The JVM splits allocated memory into four separate spaces:
* eden
* survivor
* tenured
* metaspace
Different types of garbage collectors
mark-and-sweep
The JVM splits allocated memory into four separate spaces:
* eden
* survivor
* tenured
* metaspace
Different types of garbage collectors
mark-and-sweep
div > p selects only the <p> elements that are immediate children of a <div>.div > p
will select this paragraph:<div>
<p>This is a paragraph</p>
</div>
but will not select this paragraph:<div>
<table>
<tr>
<td>
</td>
</tr>
</table>
</div>
<form><div><input type="text" name="a" value="1" id="a"></div><div><input type="text" name="b" value="2" id="b"></div><div><input type="hidden" name="c" value="3" id="c"></div><div><textarea name="d" rows="8" cols="40">4</textarea></div><div><select name="e"><option value="5" selected="selected">5</option><option value="6">6</option><option value="7">7</option></select></div><div><input type="checkbox" name="f" value="8" id="f"></div><div><input type="submit" name="g" value="Submit" id="g"></div></form>$( document ).ready( function( ) { $( "form" ).submit(function( event ) { console.log( $( this ).serializeArray() ); event.preventDefault(); });