“Chaînes javascript” Réponses codées

Nouvelle ligne javascript

console.log('Hello \n World');
Bored Beetle

Créer des chaînes JavaScript

//strings example
const name = 'Peter';
const name1 = "Jack";
const result = `The names are ${name} and ${name1}`;
SAMER SAEID

Chaîne javascript

//strings example
const name = 'ram';
const name1 = "hari";
const result = `The names are ${name} and ${name1}`;
SAMER SAEID

Chaînes javascript

// JavaScript String
const data =
{
    "name": "John Doe",
    "age": 45
}
function Sample() { return "TEXT"; }

var str1 = 'With " in it "';
var str2 = "With ' in it '";
var str3 = `Contains other Strings >${str1}<, Properties of objects >${data.age}< or return values from functions >${Sample()}<.`;

console.log(str1); // With " in it "
console.log(str2); // With ' in it '
console.log(str3); // Contains other Strings >With " in it "<, Properties of objects >45< or return values from functions >TEXT<.
Carsten Schlegel

Fonction JavaScript String ()

const a = 225; // number
const b = true; // boolean

//converting to string
const result1 = String(a);
const result2 = String(b);

console.log(result1); // "225"
console.log(result2); // "true"
SAMER SAEID

Straforma dans Stringa JS

var x = new String("Una nuova stringa");
Comfortable Capuchin

Réponses similaires à “Chaînes javascript”

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code