child theme

Basic array operations in Javascript

How to add elements at the start of an array in javascript? let list1 = [‘b’, ‘c’]; //using spread operator console.log([‘a’, …list1]); //Or using unshift method list1.unshift(‘a’); console.log(list1); How to add elements at the end of an array in javascript? let list2 = [‘a’, ‘b’]; //using spread operator console.log([…list2, ‘c’]); //or push method list2.push(‘c’); console.log(list2); …

Basic array operations in Javascript Read More »

What is async attribute in script tag in javascript?

What is async attribute in script tag in javascript? <script src=”test.js” async></script> If async attribute is present in script tag then script is executed asynchronously. async attribute is a Boolean attribute. What is the difference between async and defer? If async is present the file gets downloaded asynchronously and then executed as soon as it’s …

What is async attribute in script tag in javascript? Read More »

child theme

javac command not working on my windows

Download JDK and find the bin path from the directory. C:\Program Files\Java\jdk-15.0.2\bin The set the environment variables. Open control panel and edit path in the environment variables. Just add a new value under the “Path” as shown in the screenshots.

The provided API Key is expired

Google Maps API key error If you have generated Google Maps API key and when you save it gives the below error: It is because Google services takes about 10 mins to make service available for the newly created API keys.Wait for some time and it will start working.

How to fix Briefly Unavailable for Scheduled Maintenance in WordPress?

Briefly Unavailable for Scheduled Maintenance error in WordPress This error comes when updating plugins, themes or wordpress. In this case wordpress started an upgrade but failed to complete it. The error displays like this. This is actually not an error. Its just wordpress has put website under maintenance until the upgarde finishes. WordPress creates .maintenance …

How to fix Briefly Unavailable for Scheduled Maintenance in WordPress? Read More »