Golang Tutorial
Learn Golang tutorials with examples

January 1, 2022 · 1 min read
Recently, We have posted many tutorials on the Lodash library. Lodash is a javascript library for utility functions. Lodash javascript Library Lodash is very easy to use and simple to integrate into javascript client and server-side like nodejs applications. Advantages with this library are supports the latest and older browsers. Developers need not think about how it works in the older browser as it is a stable library. Lodash has common utility functions to manipulate objects, arrays, Functions, Dates, Numbers, and lang objects....
January 1, 2022 · 4 min read
Discuss the popular javascript library Lodash with examples. understanding Lodash framework As you know javascript is popular nowadays. which is used to write a code for front-end and back-end layers. During development, if any reusable functionalities like object null check and common utilities etc are there, I will write a utility module, which can be reused in all your application modules. It is time-consuming for various reasons have to write a code for each utility and have to take all edge cases for handling this maintenance of this module if any changes from browsers as well as from other frameworks....
January 1, 2022 · 6 min read
Javascript Documentation JsDoc is a javascript documentation generator for javascript language. This tool is used to generate code documentation in HTML format of a javascript source code and it is similar to Javadoc in java language. Strong documentation is one of the factors for a successful software application.JSDoc parse javascript source with content from /** */ and outputs HTML documentation. This blog post covers JSDoc tutorials with examples Install and Setup JSDoc To Play with this, first, you need to install it....
January 1, 2022 · 1 min read
In this blog post, learn Frequently used String examples in javascript/typescript. How to make the first letter a string an upper case? In some cases, We need to display the String word in uppercase. Its cover capitalizes the first character of a string. function captialFirstLetterString(string) { return string.charAt(0).toUpperCase() + string.slice(1); } console.log(captialFirstLetterString('this is test')) Output is How to capitalize the first letter of every word of a string? function captialFirstLetterEveryWordString(string) { return string....
January 1, 2022 · 4 min read
The error is javascript standard object like Boolean, Function, and Object objects. This will be thrown when a runtime error occurs. It has name , message, fileName and lineNumber properties name , message have a supports in all browsers. All other properties like fileName and lineNumber will not have to support all browsers Syntax General syntax. new InternalError(Messages,FileName,LineNumber) and the parameters are Messages indicate detailed descriptive messages Filename indicates on which error occurred line number indicates on which line number In tells the line number that occurred All the above three parameters are optional....
Recent posts
Multiple ways to iterate a loop with index and element in array in swift How to reload a page/component in Angular? How to populate enum object data in a dropdown in angular| Angular material dropdown example How to get the current date and time in local and UTC in Rust example Angular 13 UpperCase pipe tutorial | How to Convert a String to Uppercase example