type RGB = readonly [red: number, green: number, blue: number];
why is readonly used in this instance?
what actually is the result type? an array of strings or some type of enum? eg ["red": 1, "green": 2]
could you explain more why:
type RGB = readonly [red: number, green: number, blue: number];
type Color = RGB | string;
const myColor = 'red' satisfies Color; // works
myColor.toUpperCase(); // valid operation as myColor is a string
so if myColor can be a string OR an RGB, how is it always going to work with the .toUpperCase ? Would that not fail on the tuple type of RGB?
what actually is the result type? an array of strings or some type of enum? eg
["red": 1, "green": 2]
It'd be a tuple of 3 numbers, something like:
constmyColor=[120,255,10];
Adding readonly will only tell TS that you cannot push / mutate its content. And the red, green, blue is just to gave labels to the 3 values (hints on the values).
See devblogs.microsoft.com/typescript/...
It's used because using as const on an array creates a readonly tuple. So I had to use it to make the 2 types compatible.
so if myColor can be a string OR an RGB
That's the point of satisfies: it won't be a string or a RGB: when you do const myColor = 'red', myColor will have the type string.
Adding satisfies Color doesn't change its type, but instead checks that it can be casted into a Color. And indeed, string can be casted (but won't be casted) as a RGB | string.
So as myColor stays a string, TS won't throw an error on myColor.toUpperCase()
But hypothetically, then, you have an RGB type which satisfies the requirements for the Color type; what actually happens when you try to run .toUpperCase()?
At the end of the day, type Color = RGB | string is really just saying that anything stored as a Color should either be a RGB or a string. And, using satisfies is supposed to put us in a position where we can be confident that it's safe to use string methods or methods specific to a readonly array (RGB) should work or have some standard behavior across all Color instances. I don't really understand how that works or how that's supposed to be handled.
so it'd just apply toUpperCase() to 'red', returning 'RED'.
I don't really understand how that works or how that's supposed to be handled.
satisfies doesn't change the type of myColor. It just checks that the type of the variable can be assimilated as another one. You can think about it as:
typeRGB=readonly[red:number,green:number,blue:number];typeColor={value:RGB|string};constmyColor={value:'red'};constvalidatedMyColor:Color=myColor;// ^ this variable isn't used, its only purpose is// to check that `myColor` is assignable as a `Color` variable.// But it doesn't change the fact that `myColor.value` is a string,// and not `string | RGB`.myColor.value.toUpperCase();
For further actions, you may consider blocking this person and/or reporting abuse
We're a place where coders share, stay up-to-date and grow their careers.
type RGB = readonly [red: number, green: number, blue: number];why is
readonlyused in this instance?what actually is the result type? an array of strings or some type of enum? eg
["red": 1, "green": 2]could you explain more why:
so if
myColorcan be a string OR an RGB, how is it always going to work with the.toUpperCase? Would that not fail on the tuple type of RGB?It'd be a tuple of 3 numbers, something like:
Adding
readonlywill only tell TS that you cannot push / mutate its content. And thered,green,blueis just to gave labels to the 3 values (hints on the values).See devblogs.microsoft.com/typescript/...
It's used because using
as conston an array creates a readonly tuple. So I had to use it to make the 2 types compatible.That's the point of
satisfies: it won't be a string or a RGB: when you doconst myColor = 'red',myColorwill have the typestring.Adding
satisfies Colordoesn't change its type, but instead checks that it can be casted into aColor. And indeed,stringcan be casted (but won't be casted) as aRGB | string.So as
myColorstays a string, TS won't throw an error onmyColor.toUpperCase()But hypothetically, then, you have an RGB type which satisfies the requirements for the Color type; what actually happens when you try to run
.toUpperCase()?At the end of the day,
type Color = RGB | stringis really just saying that anything stored as aColorshould either be aRGBor astring. And, usingsatisfiesis supposed to put us in a position where we can be confident that it's safe to use string methods or methods specific to areadonly array(RGB) should work or have some standard behavior across allColorinstances. I don't really understand how that works or how that's supposed to be handled.As the types are stripped away in the runtime, it'd be regular JS:
becomes
so it'd just apply
toUpperCase()to'red', returning'RED'.satisfiesdoesn't change the type ofmyColor. It just checks that the type of the variable can be assimilated as another one. You can think about it as: