Hacker Newsnew | past | comments | ask | show | jobs | submitlogin

    el.email = Object.assign(document.createElement('input'),{type:'email'});


el.email = { document.createElement('input'), ...{ type: 'email' }}


I know about the spread operator, but I'm pretty sure that's invalid. `var foo = { document.createElement('input') };` doesn't work, spread or no spread after it.


Ow man.. I saw the Object.assign example and thought i don't like it because it requires an extra polyfill. I can just use a spread and let babel handle it.

If anything it should be `var email = {...document.createElement('input'), type: 'email'}`

But that would result in `Object.assign({}, document.createElement('input'), { type: 'email' })`

Got 4 up votes though..


What supports this feature and how is it implemented?



(Too long to edit my other reply)

Also used was object destructuring: http://odetocode.com/blogs/scott/archive/2014/09/11/features...




Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: