/ Published in: JavaScript
يمكنني Øذ٠السطر الثالث دون Øدوث أي مشاكل
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
<script type="text/javascript"> var MyVariable; // Delete this line function x() { MyVariable = 'Hello, World!'; } function y() { alert(MyVariable); } x(); y(); </script>