freeCodeCamp/guide/arabic/miscellaneous/write-and-run-es6-code-in-t.../index.md

22 lines
981 B
Markdown

---
title: Write and Run Es6 Code in the Browser
localeTitle: اكتب وأكتب رمز Es6 في المتصفح
---
> تضمين التعليمة البرمجية التالية في الصفحة.
``<!-- Write these first. Here `bootstrap.js` doesn't mean Twitter Bootstrap. -->
<script src="https://google.github.io/traceur-compiler/bin/traceur.js"></script>
<script src="https://google.github.io/traceur-compiler/src/bootstrap.js"></script>
<!-- Edit the src. Write `type="module"` (important) for linked script -->
<script src="app.js" type="module"></script>
<!-- Remember to write `type="module"` for embedded script -->
<script type="module">
//→ write your script here
</script>
``
**انظر:** [Traceur Compiler الابتداء](https://github.com/google/traceur-compiler/wiki/Getting-Started)
**العرض التوضيحي:** [ES6 Demo Repo Source](https://github.com/abhisekp/JS-Weird-Parts/tree/109ab3b0c94d1fbf9bbc402dd36e9bca60d5b456)