code verkürzen - Druckversion +- Javascript-forum (https://javascript-forum.de) +-- Forum: Clientseitig (https://javascript-forum.de/forumdisplay.php?fid=9) +--- Forum: TypeScript (https://javascript-forum.de/forumdisplay.php?fid=11) +--- Thema: code verkürzen (/showthread.php?tid=398) |
code verkürzen - frankmehlhop - 04.04.2022 Wie kann ich die Zeile 4 mit in den Suchausdruck (LinQ?) in Zeile 3 integrieren? let product = new ProductModel(); let pEx: ProduktExtendedModel; pEx = this.products.find(i => i.pd.pdnr === event.objectId); product = pEx.pd; RE: code verkürzen - rzscout - 29.01.2024 Code: const product = this.products.find(i => i.pd.pdnr === event.objectId).pd; |