VB 6 Form Title
A VB 6 form has a title bar and the title of the form can be changed. In this article, we will talk about two… Read More »VB 6 Form Title
A VB 6 form has a title bar and the title of the form can be changed. In this article, we will talk about two… Read More »VB 6 Form Title
In this article, you learn about Vb 6 form and understand the types and different parts of VB 6 form object. There are many things… Read More »VB Form Basics
Apart from performing mathematical calculations using builtin math functions, the Visual Basic 6 has functions that can handle financial data. You can always write your… Read More »VB 6 Handling Financial Data
Date and time are very important to programming languages. It helps show the date and time, run a timer, show current time or date, even… Read More »VB 6 Date And Time Functions
The String.prototype.split() function divide the string into array of sub-strings. You can perform other array manipulation on the resultant string. The syntax for split() function… Read More »JS: String.prototype.split()
The JavaScript String.prototype.endsWith() function will receive a string as parameter and check if the given string ends with the parameter string. If it does end… Read More »JS: String.prototype.endsWith()
The String.prototype.repeat() function repeats a given string for a number of time. The count is given as parameter to the function. The general syntax is… Read More »JS: String.prototype.repeat() function
Previous Next In JavaScript, there are several in-built functions to manipulate strings. One of them is String.prototype.repeat() function. In this tutorial, you will write a… Read More »Repeat A String
Previous Next In this example, we will receive a two-dimensional array of numbers as input and the JavaScript function will find the largest in each… Read More »Find The Largest Number
Previous Next In this example, you will create a JavaScript function that will accept a string that contains multiple words and find the longest among… Read More »Find Longest Word in a String