I understand below two usages in TS/ES6.
-
Below, a variable
myname
of typestring
which is going to be constant(final) is declared.const myname: string = ‘abcd’;
-
Below a variable/function
initialPath
is declared and is assigned a function body using the=>
operator.const initialPath = ({pathRoot, myvar = ”, locale = ”}) =>
path.join(process.cwd(), pathRoot, myvar, locale.toLowerCase());
But I am not sure of the below usage, what is :
in the below doing.
module.exports = {
application: myname,
myservicePostfix,
loadablePath: ({pathRoot, myvar}) =>
path.join(basePath({pathRoot, myvar}), 'loadable.json')
}
-> does application: myname
mean that application = myname
and application is of type typeof(myname).
-> similarily what does loadablePath:
above mean