/ Published in: JavaScript
يمكنني حذف السطر الثالث دون حدوث أي مشاكل
Expand |
Embed | Plain Text
<script type="text/javascript"> var MyVariable; // Delete this line function x() { MyVariable = 'Hello, World!'; } function y() { alert(MyVariable); } x(); y(); </script>
You need to login to post a comment.
