{{theTime}}

Search This Blog

Total Pageviews

How to disable 'experimentaldecorators' in VSCode?

Experimental support for decorators is a feature that is subject to change in a future release. 
To disable in VSCode goto 
  - Preferences --> Settings
  - Uncheck enable/disable experimentalDecorators and save.

No comments:

Java Script GET request Sample Code

fetch(' https://api.public.com/api ')   .then(response => response.json())   .then(data => console.log(data))   .catch(error =...