Welcome to Software Development on Codidact!
Will you help us build our independent community of developers helping developers? We're small and trying to grow. We welcome questions about all aspects of software development, from design to code to QA and more. Got questions? Got answers? Got code you'd like someone to review? Please join us.
Activity for Andrew Shepherdâ€
Type | On... | Excerpt | Status | Date |
---|---|---|---|---|
Comment | Post #281139 |
You mispelt 'querySelectorAll', hence the Uncaught Type Error. (more) |
— | over 3 years ago |
Edit | Post #281019 |
Post edited: |
— | over 3 years ago |
Edit | Post #281019 | Initial revision | — | over 3 years ago |
Answer | — |
A: Update list based on presence of identifier in a second list If you want to be more Linq-like without creating a `ForEach` method: ```` vehicles = vehicles .Select( v => new Vehicle { Make = v.Make, VIN = v.VIN, Color = v.Color, HsRegistration = vinList.Contains(v.VIN... (more) |
— | over 3 years ago |