Activity 31: Angular Ecommerce Product List
product.service.ts
import { Injectable } from '@angular/core';
import { Observable, of } from 'rxjs';
import { Product } from '../Models/product.model';
@Injectable({
providedIn: 'root'
})
export class ProductService {
private products: Product[...
zaack.hashnode.dev4 min read