What is the returning value of the getContext() method?
A
Drawing model
B
CanvasRenderingContext2D object
C
Context2D object
D
Container
Correct Answer: CanvasRenderingContext2D object
Call getContext() with the argument “2d” to obtain a CanvasRenderingContext2D object that you can use to draw two-dimensional graphics into the canvas. It is important to understand that the canvas element and its context object are two very different objects.