facn2 / Week2-Ba6e5-Developers-TodoList

ToDoList
https://facn2.github.io/Week2-Ba6e5-Developers-TodoList/
2 stars 1 forks source link

Object.assign is ES6, not advised #44

Open mattlub opened 7 years ago

mattlub commented 7 years ago

In your markTodo function: https://github.com/facn2/Week2-Ba6e5-Developers-TodoList/blob/ecf576271264e772ab132ab9dbe0386073130ad2/logic.js#L64

I would advise you to not use ES6 features at the moment in javascript files for the browser, because they do not have full browser support.

see: http://kangax.github.io/compat-table/es6/#test-Object_static_methods_Object.assign

(Ask someone/google/me if you are not exactly sure what I mean by ES6!)