how to write onload function in javascript code example
Example 1: javascript execute code on page load
<html>
<body onload="loaded();"></body>
<script>
function loaded() {
alert('Page is loaded');
}
</script>
</html>
Example 2: js document onload
//use
window.onload=()=>{};