~ What ? ~

This is the practice of putting the type of the variable in the variable name.

const bIsValid: boolean = true;
const iSpeed: number = 1;
const sUserName: string = "Stefan";

Origin

This practice originates from C, before standard types existed.