Last active
September 2, 2023 17:46
-
-
Save SirmaXX/1a1501129d539668a0dc3c626fbcfbee to your computer and use it in GitHub Desktop.
kodlar
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!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> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!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> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function dene(){ | |
| alert("dene"); | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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