Javascript – I'm using Lodash forEach to set a boolean property but only the first object is affected
I was trying to set a boolean property for every object of an array. import { Component, OnInit } from "@angular/core"; import * as _ from "lodash"; @Component({ selector: "app-root", templateUrl: "./app.component.html", styleUrls: ["./app.component.css"] }) export class AppComponent implements OnInit…