BABEL INTRO Flashcards

1
Q

What is Babel?

A

It is toolchain used to convert ECMAScript 2015+ code into backwards compatiable version of javascript in current and older 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 software component that adds a specific feature to an existing program

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

What is a Webpack loader?

A

It is a program that runs as a file is loading

Loaders are the node-based utilities built for webpack to help webpack to compile and/or transform a given type of resource that can be bundled as a javascript module

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

include together as dev dependencies, webpack loader will use babel to convert into backwards compatibale version as it loads

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