Currying in JavaScript:
Currying is the process of converting a function with multiple arguments into a sequence of functions taking one argument at a time.
Example:
function add(a, b) {
return a + b;
}
const add = a => b => a + b;
add(2)(3);
Partial application:
Partial Application is a technique where a function is called with some of its arguments, and it returns a new function that takes the remaining arguments later.
Example:
function multiply(a, b) {
return a * b;
}
const multiplyBy2 = multiply.bind(null, 2);
multiplyBy2(5);
migration/upgrade
Migration - one frame to another frame (eg:vue.js)
Upgrade - new version of same technology (eg:Node.js)
These are the topics Discussed in the Meetup (to be discussed)
- Logging Utility
- Composition and Currying
- Pipeline
- Pitfall
- Backend Migration
- SSR.
Neural networks
Hidden Layers -->input layer and output layer
y=x*w+b
x-input
w-weight
b-bias

Top comments (0)