JavaScript is one of the easiest programming languages to learn. If you are confused on how to check if one string contains another substring in JavaScript, then you have come to the right place. There…
Learn Java - How to Convert Int to String?
Learning how to convert an int value to String in Java is extremely easy. However, there are multiple ways to achieve the desired result, and this is where complexity comes in. Currently, there are three…
HTML Tutorial for Beginners: Part 1: Getting Started
HTML (Hyper Text Markup Language) is the first language you will need to learn when building web applications. Even if you are not serious about web programming, or just want to get started with programming…
Learn Java - How to Split a String?
If you are looking to learn how to split a string in Java, you have come to the right place. String operations are the most common operations when it comes to programming. Java Strings are…
Getting stuck is one of the worst feelings one can ever get through. It is a sign that you are learning, but it can also demotivate many beginners out there. Learning a new skill is…
Bootstrap Tutorial for Beginners - A Complete Beginners' Guide
If you are into web development, you should already know the importance of frameworks. They can improve workflow, require less code and allow rapid development with ease. You can find frameworks that are specially made…
Learn C# - How To Get Int Value from Enum?
Getting an int value from enum can be challenging in C#. However, it can easily be done by using the following code:
1 2 3 4 5 6 |
public enum Months { Numbers = 23, MonthType = 3 } int abc = (int)Months.Number; |
The above code stores int value of Months enum into abc. We…
Learn C# - How To Get the URL of The Current Page
If you are using C# for creating apps, you may want to use it to fetch the URL of the current page. This requirement is extremely common in web apps, or apps that take advantage…
Learn C# - How To Add Values to a C# Array
The Array is used to store information in a structured manner. It is a data structure that helps store and retrieve data. If you are looking to add values to a C# array, you have…