|
|
|
|
|
by yiransheng
3225 days ago
|
|
ES6+ javaScript in absorbed many great features from python: destructuring vs. tuple unpacking, spread (...) vs *args argument unpacking and generators. Many things I enjoyed in python are now also idiomatic javaScript. Only thing missing is function decorators: @connect(...)
function StateLessComponent(props) {
}
|
|