c# .net Adsense ADO.NET Linq Viruses/security asp.net MVC JQuery Angular-js Node-js SEO Java C++ SQL API Networking vb.net .Net Css JavaScript Generics c#.Net entity framework HTML Website host Website Construction Guide HTTP tutorial W3C tutorial Web Services JSON Psychology Ionic framework Angular ReactJS Python Computer Android

What is if statement and how to implement in JavaScript?

| | Category: JavaScript

If statement is the part of JavaScript. If statement executes a statement when the condition is true.

How to convert rgb value to html color in asp.net vb?

| | Category: .Net

FromArgb method. FromArgb method has to pass three overloaded parameter red, green and blue values. The ColorTranslator.ToHtml method returns the hexadecimal code for the color object. The textbox name as txtResult will result the hexadecimal code.

How to use substr() method in JavaScript?

| | Category: JavaScript

In this article we will discuss to how to use substr() method. It has two parameter start and count. Start is required parameter and it specifies where the position should to start. End is optional parameter it specifies the number of characters to extract. If the count parameter is not specified, it takes the all characters till end of the string. If the count is zero or negative then it will return empty.

How to use substring() method in JavaScript?

| | Category: JavaScript

In this article we will discuss to how to use substring() method. It has two parameter start and end. Start is required parameter and it specifies where the position should to start. End is optional parameter it specifies where the extraction should end. If the value of start parameter is greater than the end parameter then the method will swap the two arguments, start treated as end and end will be treated as start.

How to replace strings in JavaScript?

| | Category: JavaScript

In this article we will discuss to replace strings in JavaScript by using replace() method. It searches a given specified string and replaces with the replacement values.

How to remove the whitespace from both sides of the string by using JavaScript?

| | Category: JavaScript

In this article we will discuss to remove the whitespace from both sides of the string by using JavaScript. We should use trim() method for removing whitespace.

How to find the length of the string variable in JavaScript?

| | Category: JavaScript

In this article we will discuss how to length of the string variable in JavaScript using length property.

How to convert string to uppercase and lowercase using javascript?

| | Category: JavaScript

In this article we will discuss how to convert string to uppercase and lowercase using JavaScript. In JavaScript we can convert to Uppercase by using toUpperCase() method and for lowercase by toLowerCase() method.

How to add single quotes inside a string using JavaScript?

| | Category: JavaScript

In this article we will discuss how to add single quotes inside a string using JavaScript. This was achieved by two methods

How to Concatenating string using JavaScript?

| | Category: JavaScript

In this article we will discuss how to concatenating string using JavaScript . Concatenating is achieved by two methods. You could use + operator or by concat() method.

Page 68 of 82