Well, Go is a compiled programming language created by a team of engineers at Google in 2007, and in 2009 it became an open source language and later, in 2010, it was used by developers outside of Google. It is also important to say that...
In this post, you will learn how to work with bitwise operators so that you can use that same knowledge and thus evolve. bitwise operators operate one bit at a time and it is important to be aware of what binary code is. 1 Real...
In this post, you will learn how to work with lambda so that you can use that same knowledge and thus evolve. lambda is used in the creation of anonymous functions and these are so called because they are not declared with the terms of...
In this post, you will learn how to work with two specific methods (equals() and replace()) so that you can use that same knowledge and thus evolve. equals() Returns a boolean value (true or false) relative to the comparison of the given string of characters...
In this post, you will learn how to work with two specific methods (indexOf() and trim()) so that you can use that same knowledge and thus evolve. indexOf() Returns a substring from the first occurrence of a character (or even a set of characters) to...
In this post, you will learn how to work with two specific methods (substring() and split()) so that you can use that same knowledge and thus evolve. substring() Returns a substring (a new string with characters from a certain range) according to the start index...