How to Setup Jenkins Docker Container on ServerIntroduction to Build Automation Build Automation is a process of Automating the workflow that test your newly committed code, Build an Artifact ( Jar file or Docker image) and push that into a Private Repository or even Deploy it into Development se...Jun 22, 2022·3 min read
10 most useful string methods in JavaIntroduction to Strings String is an object that represents sequence of char values. Strings are immutable in Java. There are two ways to create string in Java By String literal By new keyword String myString1 = "Pankaj Singh"; String myString2 = n...Feb 3, 2022·4 min read
Type Coercion in JavaScriptType Coercion is process of automatic or implicit conversion of value from one data type to another. Conversion from Number to String , String to Number, Boolean to Number and so on. Type coercion occurs when different types of operators are applied ...Feb 1, 2022·2 min read