Babel-Intro Flashcards

1
Q

What is Babel?

A

A toolchain that is used to convert current versions of javaScript syntax to be able to be used in current or older versions of web browsers

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What is a Plug-in?

A

it is a piece of software that adds new features to an existing computer program

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What is a Webpack loader?

A

Webpack loaders allow you to transform aspects of your module source code so that they are readable by all browsers. i.e transforming the code language in your module to a different one or import css files directly from js modules.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

How can you make Babel and Webpack work together?

A

by installing babel plugins as dependecies and then instructing webpack to use the babel plugins by editing the webpack.config.js file.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly