Avatar of ncheeku14
ncheeku14

asked on 

Appending a variable and a string

Hi,

I have a variable string in value  i.e.

var value=editBox.value;
var m = '%';

If I have a editBox.value as Hello , i want to get the string like Hello% by combining the above 2. How do I do that? I have been unsuccessful in this till now.
Thanks
JavaScript

Avatar of undefined
Last Comment
hielo
Avatar of hernst42
hernst42
Flag of Germany image

JS concats strings with +:

var result = value + m;
Avatar of hielo
hielo
Flag of Wallis and Futuna image

var value=editBox.value;
var m = '%';
var combined = value + m;
alert( combined );
editBox.value = combined;
Avatar of ncheeku14
ncheeku14

ASKER

Hi,

I tried both of them they result in a space between the two strings if I have typed in my editBox as Hello, + gives me Hello % whereas I need Hello%.  
Avatar of ncheeku14
ncheeku14

ASKER

Alternatively, is there a way in which I can remove the space from Hello % to get Hello% as a resulting string.
ASKER CERTIFIED SOLUTION
Avatar of hernst42
hernst42
Flag of Germany image

Blurred text
THIS SOLUTION IS ONLY AVAILABLE TO MEMBERS.
View this solution by signing up for a free trial.
Members can start a 7-Day free trial and enjoy unlimited access to the platform.
See Pricing Options
Start Free Trial
SOLUTION
Avatar of hielo
hielo
Flag of Wallis and Futuna image

Blurred text
THIS SOLUTION IS ONLY AVAILABLE TO MEMBERS.
View this solution by signing up for a free trial.
Members can start a 7-Day free trial and enjoy unlimited access to the platform.
JavaScript
JavaScript

JavaScript is a dynamic, object-based language commonly used for client-side scripting in web browsers. Recently, server side JavaScript frameworks have also emerged. JavaScript runs on nearly every operating system and in almost every mainstream web browser.

127K
Questions
--
Followers
--
Top Experts
Get a personalized solution from industry experts
Ask the experts
Read over 600 more reviews

TRUSTED BY

IBM logoIntel logoMicrosoft logoUbisoft logoSAP logo
Qualcomm logoCitrix Systems logoWorkday logoErnst & Young logo
High performer badgeUsers love us badge
LinkedIn logoFacebook logoX logoInstagram logoTikTok logoYouTube logo