Skip to content

Instantly share code, notes, and snippets.

@SirmaXX
Last active September 2, 2023 17:46
Show Gist options
  • Select an option

  • Save SirmaXX/1a1501129d539668a0dc3c626fbcfbee to your computer and use it in GitHub Desktop.

Select an option

Save SirmaXX/1a1501129d539668a0dc3c626fbcfbee to your computer and use it in GitHub Desktop.
kodlar
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<script src="new.js"></script>
<script>
function deneme(){
alert("deneme");
}
</script>
</head>
<body>
<button onclick="deneme()">deneme</button>
<button onclick="dene()">dene</button>
</body>
</html>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<script module src="neww.js"></script>
<script>
function deneme(){
alert("deneme");
}
</script>
</head>
<body>
<button onclick="deneme()">deneme</button>
<button onclick="dene()">dene</button>
</body>
</html>
function dene(){
alert("dene");
}
function dene(){
alert("dene");
}
module.exports = { deneme}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment