Computer Science, asked by retro87, 6 months ago

What is a static method ?​

Answers

Answered by studyj690
1

Answer:

A static method (or static function) is a method defined as a member of an object but is accessible directly from an API object's constructor, rather than from an object instance created via the constructor. ... Methods called on object instances are called instance methods

Answered by LynxLada
0

Answer:

A static method (or static function) is a method defined as a member of an object but is accessible directly from an API object's constructor, rather than from an object instance created via the constructor.

Explanation:

In the Notifications API, the Notification.requestPermission() method is called on the actual Notification constructor itself — it is a static method:

[let promise = Notification.requestPermission();]

The Notification.close() method on the other hand, is an instance method — it is called on an specific notification object instance to close the system notification it represents:

[ let myNotification = new Notification('This is my notification');

myNotification.close();]

Similar questions