Constants

Angular: The Full Gamut Edition

Charlie Greenman
September 17, 2020
2 min read
razroo image

What is a Constant?

In JavaScript the idea of having a constant would be assigning a variable, to a particular value. Whenever we would like that value, instead of typing out the value, we would use the variable. At first, however, it might seem counter-intuitive. Why use the constant value, if it is literally named the same thing as the actual value?

// Update last updated value to have latest payload data
const LAST_UPDATED = "LAST_UPDATED";
new updateValue(payload, LAST_UPDATED);

Benefits of a Constant

Creates a Table of Contents

When one creates a series of constants in particular file for a certain component, one can peruse through the constant file, being able to see all actionable items in one. For instance, the following:

// imagine these constants, are in a folder called ValueActionTypes
const UPDATE_VALUE = "UPDATE_VALUE";
const ADD_VALUE = "ADD_VALUE";
const DELETE_VALUE = "DELETE_VALUE";

//imagine the following code is in a new folder called valueActions
import * as types from "../ValueActionTypes";
import {BuyerValue} from './buyer-filter.interfaces';

export class UpdateValue implements Action {
  readonly type = UPDATE_VALUE;

  constructor(public payload?: BuyerValue, public keyName?) {};
}

export class AddValue implements Action {
  readonly type = ADD_VALUE;

  constructor(public payload?: BuyerValue, public keyName?) {};
}

export class DeleteValue implements Action {
  readonly type = DELETE_VALUE;

  constructor(public payload?: BuyerValue, public keyName?) {};
}

Communicate to Maintainers

If using a constant value, it signifies to future maintainers of your code that this is a value which is immutable. Further distinguishing intent of application/snippet of code.

Helps Secure Values

When typing in a string for a particular constant value, particular diligence must be applied in order to make sure it is type appropriately. Typing in the one place, allows the developer to type in one place, and simply copy and paste value, from a singular expected location(the const file) to 5 different places.

Subscribe to the Razroo Angular Newsletter!

Razroo takes pride in it's Angular newsletter, and we really pour heart and soul into it. Pass along your e-mail to recieve it in the mail. Our commitment, is to keep you up to date with the latest in Angular, so you don't have to.

More articles similar to this

footer

Razroo is committed towards contributing to open source. Take the pledge towards open source by tweeting, #itaketherazroopledge to @_Razroo on twitter. One of our associates will get back to you and set you up with an open source project to work on.