Type Coercion Flashcards

1
Q

What are abstract operations in javascript?

A

abstract operations are internal operations of javascript that are performed during execution of code.

It is called “abstract” because they just give information as to what needs to happen during execution, how it is done is left to implementations of ECMAScript.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Info

A

implicit type coercion in javascript also uses some abstract operations such as:

  1. ToPrimitive
  2. ToNumber
  3. ToString
  4. ToBoolean

Basic idea is anytime we dont have certain type required for an operation, we invoke one of the abstract operations.
For eg: “5” - 2 is a mathematical operation which requires its operands to be numbers. So it gets converted to ToNumber(“5”) - 2 which results in 5-2=3.

Understanding how these abstract operations work is the base of understanding how type coercion works in javascript

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

How does ToPrimitive abstract operation work?

A

ToPrimitive abstract operation has following definition ToPrimitive(hint).

hint is by default NUMBER and can be either NUMBER or STRING.

Basic Algorithm of ToPrimitive is as follows:
1. If primitive, return input
2. if an object has explicit ToPrimitive internal method (eg: Date object). It executes that, else
3. If hint is NUMBER, it executes valueOf() method of input object first, if result is not primitive, it executes toString() method. If toString() also doesnt give primitive, it throws TypeError.
4. If hint is STRING, it executes in the order of toString() first and then valueOf(). If none of them return primitive, it throws TypeError.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

How does ToString abstract operation work?

A
  1. If input is primitive, it will just execute ToString algorithm which defines some rules based on primitive type.
  2. If input is object, it will do the following ToString(ToPrimitive(input, STRING)).

We know that ToPrimitive with hint as STRING executes toString() and then valueOf()

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Answer ToString abstract operation values for the following:

  1. ToString(null):
  2. ToString(undefined)
  3. ToString(true)
  4. ToString(false)

// Number primitive: You can find exhaustive list of rules for conversion here https://tc39.es/ecma262/#sec-numeric-types-number-tostring

  1. ToString(NaN)
  2. ToString(0)
  3. ToString(-0)
  4. ToString(-1)
  5. ToString(3.124)

// If input is object,

  1. ToString([])
  2. ToString([null])
  3. ToString([undefined])
  4. ToString([null, undefined])
  5. ToString([1,2,3])
  6. ToString([[[],[],[]], []])
  7. ToString({})
  8. ToString({a: 2})
A
  1. “null”
  2. “undefined”
  3. “true”
  4. “false”
  5. “NaN”
  6. “0”
  7. “0”
  8. “-1”
  9. “3.124”

// For object inputs, following steps is how it gets resolved
// ToString(ToPrimitive(input, STRING))
// ToPrimitive(input, STRING) -> input.toString() else input.valueOf()

  1. ToString(ToPrimitive([], STRING)) => ToString(toString([])) => ToString(“”) => “”
  2. ToString(ToPrimitive([null], STRING)) => ToString(toString([null])) => ToString(“”) => “”
  3. ToString(ToPrimitive([undefined], STRING)) => ToString(toString([undefined])) => ToString(“”) => “”
  4. ToString(ToPrimitive([null, undefined], STRING)) => ToString(toString([null, undefined])) => ToString(“,”) => “,”
  5. ToString(ToPrimitive([1,2,3], STRING)) => ToString(toString([1,2,3])) => ToString(“1,2,3”) => “1,2,3”
  6. ”,,,”
  7. ToString(ToPrimitive({}, STRING)) => ToString(toString({})) => ToString(“[object Object]”) => “[object Object]”
  8. “[object Object]”
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

How does ToNumber abstract operation work?

A
  1. If input is primitive, it will just execute ToNumber algorithm which defines some rules based on primitive type.
  2. If input is object, it will do the following ToNumber(ToPrimitive(input, NUMBER)).

We know that ToPrimitive with hint as NUMBER executes valueOf() and then toString()

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Answer ToNumber abstract operation values for the following:

  1. undefined
  2. null
  3. false
  4. true

// If input is string,
5. “”
6. “0”
7. “-0”
8. “ 009 “
9. “3.145”
10. “0.”
11. “.0”
12. “.”
13. “0x9f”

// If input is object
14. [””]
15. [“0”]
16. [“-0”]
17. [null]
18. [undefined]
19. [1,2,3]
20. [[[]]]
21. {}

A

spec mentions (1-4) explicitly
1. NaN
2. 0
3. 0
4. 1
5. 0
6. 0
7. -0
8. 9
9. 3.145
10. 0
11. 0
12. NaN
13. 175

// For object inputs, following steps is how it gets resolved
// ToNumber(ToPrimitive(input, NUMBER))
// ToPrimitive(input, NUMBER) -> input.valueOf() else input.toString()

// For [] and {} valueOf returns itself.
14. ToNumber(ToPrimitive([””], NUMBER)) => ToNumber(valueOf([””])) => since valueOf returns itself and its not primitive => ToNumber(toString([””])) => ToNumber(“”) => 0
15. ToNumber(ToPrimitive([“0”], NUMBER)) => ToNumber(valueOf([“0”])) => since valueOf returns itself and its not primitive => ToNumber(toString([“0”])) => ToNumber(“0”) => 0
16. ToNumber(ToPrimitive([“-0”], NUMBER)) => ToNumber(valueOf([“-0”])) => since valueOf returns itself and its not primitive => ToNumber(toString([“-0”])) => ToNumber(“-0”) => -0
17. ToNumber(ToPrimitive([null], NUMBER)) => ToNumber(valueOf([null])) => since valueOf returns itself and its not primitive => ToNumber(toString([null])) => ToNumber(“”) => 0
18. ToNumber(ToPrimitive([undefined], NUMBER)) => ToNumber(valueOf([undefined])) => since valueOf returns itself and its not primitive => ToNumber(toString([undefined])) => ToNumber(“”) => 0
19. ToNumber(ToPrimitive([1,2,3], NUMBER)) => ToNumber(valueOf([1,2,3])) => since valueOf returns itself and its not primitive => ToNumber(toString([1,2,3])) => ToNumber(“1,2,3”) => NaN
20. 0
21. ToNumber(ToPrimitive({}, NUMBER)) => ToNumber(valueOf({})) => since valueOf returns itself and its not primitive => ToNumber(toString({})) => ToNumber(“[object Object]”) => NaN

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

How does ToBoolean abstract operation work?

A

ToBoolean abstract operation is used when non-boolean is used in boolean required places.

It just checks if the input is truthy or falsy.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

What are falsy values?

A

null, undefined, 0, -0, “”, NaN, false, 0n, -0n

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

What is boxing?

A

Boxing is kind of like implicit conversion where javascript sees that we want to use primitive values like an object due to usage of dot notation on them and converts them into object.

Each primitive type has its corresponding object constructor. Boxing uses that to add respective properties required for an object of particular primitive type.

Eg: When “a”.length is used. Javascript converts “a” into object using new String(“a”)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

As a definition what is the difference between == and === ?

A

People mostly say == doesnt consider types and === considers types strictly. Which isnt actually true. Rather the actual scenario is,

== allows type coercion and === doesnt allow it

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

Write basic algorithm of == operator?

A

IsLooselyEqual(x, y):

  1. If x and y are of same type, return x === y
  2. null and undefined are equal
  3. If x or y is any other primitive than number, convert them to number and compare again.
  4. If x or y is object, convert them to primitive and compare again.

NOTE: This isnt an in-depth algorithm since it doesnt consider BigInt, symbol, etc since iam only trying to remember things that provide most value. If in-depth algo is required check spec.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

Write basic algorithm of === operator?

A

IsStrictlyEqual(x, y):

  1. If not same type return false.
  2. All primitives are compared by their values, except
  3. 0 === -0 returns true and NaN === NaN returns false.
  4. All other values are compared by identity rather than by value.

NOTE: This isnt an in-depth algorithm since it doesnt consider BigInt, symbol, etc since iam only trying to remember things that provide most value. If in-depth algo is required check spec.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly