Skip to content

Commit 77c2199

Browse files
authored
Merge pull request #1913 from BlueCutOfficial/patch-1
Update working-with-html-css-and-javascript.md
2 parents 42b34ec + f44dd87 commit 77c2199

File tree

1 file changed

+7
-9
lines changed

1 file changed

+7
-9
lines changed

guides/release/getting-started/working-with-html-css-and-javascript.md

Lines changed: 7 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -235,15 +235,13 @@ for more information on how to convert a classic class to modern Ember.
235235

236236
Just like the JavaScript language changes over time, web browsers change too!
237237
Ember helps you to write code that can work across many different browsers and
238-
their versions. Behind the scenes, Ember uses Babel to compile modern JavaScript
239-
to something that can work on all browsers. Without this step, you could
240-
accidentally end up shipping code that works for your version of Chrome but
241-
breaks for someone using Edge. Ember has you covered!
242-
243-
Luckily, Ember comes with a solution out of the box for this. Ember applications
244-
use [Babel](https://babeljs.io/) to compile modern JavaScript to something that
245-
can work on _all_ browsers. This means you can write modern JavaScript and use
246-
the latest features without any additional setup!
238+
their versions.
239+
240+
Behind the scenes, Ember uses [Babel](https://babeljs.io/) to compile modern
241+
JavaScript to something that can work on _all_ browsers. Without this step, you
242+
could accidentally end up shipping code that works for your version of Chrome but
243+
breaks for someone using Edge. Ember has you covered and let you write modern
244+
JavaScript and use the latest features without any additional setup!
247245

248246
> _Note: Some features require you to [enable the Babel polyfill](https://github.com/babel/ember-cli-babel#polyfill).
249247
> This adds some extra weight to your application, but ensures you'll be

0 commit comments

Comments
 (0)