Lasse Jørgensen

Results 175 comments of Lasse Jørgensen

This has to be a bug. As far as I can tell, it is taking the shorthand property and expanding it into the longhand form(s) as if it was a...

According to the specs, the end tag is not allowed. https://html.spec.whatwg.org/multipage/semantics.html#the-meta-element It will fail validation with `Error: Stray end tag meta`

Yes, the tag omission rules are the same for the `link` element. I'm not suggesting we absolutely have to test for it everywhere, I'm just saying it is in fact...

I would imagine it is still considered a best practice to include it. I'm not so sure relying on browsers to do the work is a good starting point to...

I'm not sure why constructor is in a code block in the sentences. > In ES5, we usually define a `constructor` function and use the `new` keyword to instantiate an...

I wouldn't say the `constructor` method is a replacement for a constructor function, if anything, I would say the `class` is. > In ES5, an object can be created by...

@jeremylt I think so, just make sure both of the `new` keywords are inside a code block and `constructor` for the class constructor. As they are both actual code and...

My only small concern is with this part of the sentence. > has a `constructor` method that is invoked with the `new` keyword It makes it sound like you call...

Just so I don't forget if it is changed the hint guide needs to be updated as well. https://forum.freecodecamp.org/t/freecodecamp-challenge-guide-use-destructuring-assignment-with-the-rest-parameter-to-reassign-array-elements/301218

I assume you mean rest and not spread? Because in the context of the challenge it is rest. The least specific verbiage would be "rest syntax", which would cover "rest...