“JavaScript Padend” Réponses codées

JavaScript Padend

/* The padEnd() method pads the current string with a given string 
(repeated, if needed) so that the resulting string reaches a given length.
The padding is applied from the end of the current string. */

const str1 = 'Breaded Mushrooms';

console.log(str1.padEnd(25, '.'));
// expected output: "Breaded Mushrooms........"

const str2 = '200';

console.log(str2.padEnd(5));
// expected output: "200  "
Mehedi Islam Ripon

chaîne Padstart Padend

let string = ‘Alice’; 
// padStart() — we assume our string needs to have 10 characters 
string.padStart(10, ‘o’); // returns ‘oooooAlice’
// padEnd() 
string.padEnd(10, ‘o’); // returns ‘Aliceooooo’;
Creepy Gábor

Réponses similaires à “JavaScript Padend”

Questions similaires à “JavaScript Padend”

Plus de réponses similaires à “JavaScript Padend” dans JavaScript

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code