Sunday, September 19, 2021

ES6 (JavaScript) Arrow Functions explain in briefly

Arrow functions have newly introduced a way to write JavaScript code in a shorter way. in javascript, we can write a function in the following way function myFunction(item){ console.log(item); } we are able to write javascript function as following way const myFunction = function(item){ console.log(item); } in...

Saturday, September 18, 2021

Apply SharePoint Template to site in SharePoint Online

 This article describes applying a built-in template to the site. Following are the steps. Go to the preferred site that you need to add a custom theme and click on the gear wheel in suite bar.Then You will able to see the “Apply a site template” under the Settings.When it displays the "Select...