The HTML DOM Samp Object represent the <samp> element of an HTML document.
Let us create a samp object −
Syntax
Following is the syntax −
document.createElement(“SAMP”);
Example
Let us see an example of samp object −
<!DOCTYPE html> <html> <head> <style> body{ text-align:center; background-color:#fff; color:#0197F6; } h1{ color:#23CE6B; } .drop-down{ width:35%; border:2px solid #fff; font-weight:bold; padding:8px; } .btn{ background-color:#fff; border:1.5px dashed #0197F6; height:2rem; border-radius:2px; width:60%; margin:2rem auto; display:block; color:#0197F6; outline:none; cursor:pointer; } p{ font-size:1.2rem; background-color:#db133a; color:#fff; padding:8px; } </style> </head> <body> <h1>DOM Samp Object Demo</h1> <button onclick="createSamp()" class="btn">Create a samp object</button> <script> function createSamp() { var sampElement = document.createElement("SAMP"); sampElement.innerHTML="Ouput of console.log(2+3) in JavaScript is 5"; document.body.appendChild(sampElement); } </script> </body> </html>
Output
This will produce the following output −
Click on “Create a samp object” button to create a samp object.