ItSolutionStuff.com

Angular Define Global Variables Tutorial

By Hardik Savani • May 2, 2024
Angular

In this tutorial, we will learn how declare global variable in angular app. we will simple create global variables file in angular. we can create global variable for all components in angular application.

we can easily define global variable file in angular 6, angular 7, angular 8, angular 9, angular 10, angular 11, angular 12, angular 13, angular 14, angular 15, angular 16 and angular 17 application.

We always need to declare global variable file for our angular application because we can set some global variable there like site title, api url etc so you can easily access any where in our application easily.

So, in this example, we will create GlobalConstants file for adding global variables in our application. in that file i added two variables as apiURL and siteTitle. I will access those variable value in my AppComponent file. you can also access all the component as you want.

Now, bellow we will create GlobalConstants as like created bellow and We will use that variables as like used in AppComponent file.

src/app/common/global-constants.ts

export class GlobalConstants {

public static apiURL: string = "https://itsolutionstuff.com/";

public static siteTitle: string = "This is example of ItSolutionStuff.com";

}

src/app/app.component.ts

import { Component, OnInit } from '@angular/core';

import{ GlobalConstants } from './common/global-constants';

@Component({

selector: 'app-root',

templateUrl: './app.component.html',

styleUrls: ['./app.component.css']

})

export class AppComponent implements OnInit{

title = GlobalConstants.siteTitle;

constructor() {

console.log(GlobalConstants.apiURL);

}

ngOnInit() {

console.log(this.title);

}

}

Now you can check this project and run it.

It will display as like bellow:

Output:

https://itsolutionstuff.com/

This is example of ItSolutionStuff.com

Angular is running in the development mode. Call enableProdMode() to enable the production mode.

Object

Live Reloading enabled.

I hope it can help you...

Hardik Savani

Hardik Savani

I'm a full-stack developer, entrepreneur, and founder of ItSolutionStuff.com. Passionate about PHP, Laravel, JavaScript, and helping developers grow.

📺 Subscribe on YouTube

We Are Recommending You

How to use Highcharts in Angular?

Read Now →

Angular Image Upload Example Tutorial

Read Now →

Angular Material Datepicker Example

Read Now →

How to Install And Use JQuery in Angular?

Read Now →

Angular FormGroup Example Tutorial

Read Now →

Angular Ng-Content Example Tutorial

Read Now →

Angular Service with Httpclient Example

Read Now →

How to Get Query String from URL in Angular?

Read Now →

Angular Http Post Request Example

Read Now →

Angular Change Date Format in Component Example

Read Now →