by Yogesh | Nov 17, 2018 | Angula 7 tutorial, Angular 4 Tutorial
In this tutorial, I am gonna discuss that how we can create cascade dropdowns using arrays in angular. Step1: First I will create a model.ts file to declare and define the model for program export class Department { id: number; name: string; } export class employee {...
by Yogesh | Nov 1, 2017 | Python Tutorial
What is Dictionary a built-in data structure available in Python a dictionary is a sequence of key-value, or item, pairs separated by commas. Ex port = {22: “SSH”, 23: “Telnet” , 53: “DNS”, 80: “HTTP” } . In a list,...