top of page
Search


How to start a project on Angular?
Create the project This one is straightforward. We need to create our app (where else would we be working, huh) ng new app . Install...

The Tech Platform
May 24, 2022


Object Literals in JavaScript to write complex conditions?
A JavaScript object literal is a concise way to create an object by specifying its properties and values using curly braces. It helps...

The Tech Platform
May 21, 2022


Difference Between Const vs Readonly vs Static in C#
Const: Constant fields or local variables must be assigned a value at the time of declaration and after that, they cannot be modified. By...

The Tech Platform
May 21, 2022


How to add Image in Title bar in HTML?
The majority of websites add an icon or image logo in the title bar. The icon logo is also called a favicon. Favicon, which is also known...

The Tech Platform
May 21, 2022


How to Find Missing Number in a Sorted Array in Java?
Tips to find the missing number in a sorted array: Find the sum of n number using formula n=n*(n+1)/2 Find the sum of elements present in...

The Tech Platform
May 20, 2022


How to Find Highest Repeating Word from a File in Java?
In this Tutorial we will Learn to find the duplicate word which has occurred a maximum number of times in a file. You can also print the...

The Tech Platform
May 20, 2022


Dependency Inversion Principle: How Google Developers write code
What is Dependency Inversion Principle? Dependency Inversion Principle corresponds to D among SOLI’D’ Principles. Its principle starts...

The Tech Platform
May 20, 2022


"Var" Keyword in C#
Var is a keyword, it is used to declare an implicit type variable, that specifies the type of a variable based on initial value. The var...

The Tech Platform
May 20, 2022


How To Build A Twitter Hashtag Tweets Viewing Tool
In this tutorial, we will build a simple website that displays tweets with performance indicators like ‘Retweets’ and ‘Favorites’ for any...

The Tech Platform
May 20, 2022


Node.js Logging Tutorial
Node.js logging is an important part of supporting the complete application life cycle. From creation to debugging to planning new...

The Tech Platform
May 19, 2022
bottom of page