Skip to content

Instantly share code, notes, and snippets.

View picwellwisher12pk's full-sized avatar
😶
https://github.com/picwellwisher12pk/animated-education

Amir Hameed picwellwisher12pk

😶
https://github.com/picwellwisher12pk/animated-education
  • Pakistan
View GitHub Profile
@picwellwisher12pk
picwellwisher12pk / webpack.config.js
Created February 1, 2022 10:18 — forked from danielwrobert/webpack.config.js
Example Webpack Config File
const path = require( 'path' );
const webpack = require( 'webpack' );
const MiniCssExtractPlugin = require("mini-css-extract-plugin");
module.exports = ( env, options ) => {
return {
entry: './src/block.js',
output: {
path: path.resolve( __dirname, 'build' ),
@picwellwisher12pk
picwellwisher12pk / es6.md
Last active March 24, 2022 11:34
Codehopper Sessions

JavaScript (ES6 / ECMAscript 6)

Arrow Functions

Regular Functions

function someMethod(){
    console.log('Inside someMethod')
    return true
}