-
Notifications
You must be signed in to change notification settings - Fork 0
Javascript
Baltasar Brito edited this page Nov 12, 2019
·
5 revisions
-
Default export:
import something from './something.js'
import smtg from './something.js'
-
Named export
import {something} from './somethings.js'
const numbers = [1, 2, 3];
[num1, num2] = numbers;
const person = {name: 'Name', age: 28];
{name} = person;