#Name for renamed variable?

4 messages · Page 1 of 1 (latest)

grizzled gust
#

In module 5, we have the line

import { v4 as uuidv4 } from 'https://jspm.dev/uuid';

"uuidv4" is just so it's easy for the programmer to remember and not accidentally use the default v4 variable. Is there a name for when you give a new name to a variable? For example, is it called a renamed variable, a handy variable, or something like that?

strong cairn
#

alias?

strong cairn
grizzled gust
#

Thank you!!