<!DOCTYPE html>function demoDisplay(){document.getElementById("p1").style.display="none";}function demoVisibility(){document.getElementById("p2").style.visibility="hidden";}id="p1"This is some text.id="p2"This is some text.type="button" onclick="demoDisplay()" value="Hide text with display property"type="button" onclick="demoVisibility()" value="Hide text with visibility property"