Search
 
SCRIPT & CODE EXAMPLE
 

JAVASCRIPT

javascript right trim

function rtrim(str, ch)
{
    for (i = str.length - 1; i >= 0; i--)
    {
        if (ch != str.charAt(i))
        {
            str = str.substring(0, i + 1);
            break;
        }
    } 
    return str;
}
Comment

PREVIOUS NEXT
Code Example
Javascript :: add an array to another array javascript 
Javascript :: how to convert date format using date pipe in angular 
Javascript :: getting average of array javascript 
Javascript :: nodejs path 
Javascript :: fs readfile not working 
Javascript :: react pagination 
Javascript :: smooth scroll safari 
Javascript :: StatusBar 
Javascript :: react fragment 
Javascript :: foreach db mongodb 
Javascript :: create empty array javascript 
Javascript :: webpack sass 
Javascript :: fetch catch 
Javascript :: how to hide title bar react-navigation 
Javascript :: how to know if ajax is running 
Javascript :: how to show 1 to 10 odd numbers in javascript 
Javascript :: axios error 
Javascript :: get width of div jquery 
Javascript :: MongoParseError: options buffermaxentries, usefindandmodify, usecreateindex are not supported 
Javascript :: urlencoded limit nodejs express 
Javascript :: how to sort json objects 
Javascript :: chocolatey nodejs 
Javascript :: javascript tick marks 
Javascript :: push function in javascript 
Javascript :: check if browser is internet explorer js 
Javascript :: javascript next month from date 
Javascript :: jq examples 
Javascript :: change port react app 
Javascript :: recursion javascript 
Javascript :: uselocation react 
ADD CONTENT
Topic
Content
Source link
Name
4+1 =