To call a public method on an instance of a class in TypeScript, you need to follow these steps:
Create a new instance of the class by calling the class constructor function.
Store the created instance in a variable.
Call the public method on the stored instance by using the dot notation.
Here's an example:
index.ts203 chars9 lines
In this example, we create a new instance of the MyClass
class by calling new MyClass()
. We store the created instance in a variable called myInstance
. Finally, we call the myPublicMethod
method on the myInstance
variable using the dot notation. The output of the method is logged to the console.
gistlibby LogSnag