Search
 
SCRIPT & CODE EXAMPLE
 

JAVASCRIPT

js string slicing

const str = 'The quick brown fox jumps over the lazy dog.';

console.log(str.slice(31));
// expected output: "the lazy dog."

console.log(str.slice(4, 19));
// expected output: "quick brown fox"
Comment

slice string js

const str = 'The quick brown fox jumps over the lazy dog.';

console.log(str.slice(31)); // expected output: "the lazy dog."

console.log(str.slice(4, 19)); // expected output: "quick brown fox"

console.log(str.slice(-4)); // expected output: "dog."

console.log(str.slice(-9, -5)); // expected output: "lazy"

// source : https://developer.mozilla.org/fr/docs/Web/JavaScript/Reference/Objets_globaux/String/slice
Comment

The slice JavaScript string method

// You use this method to cut out a substring from an entire string.
// We will use this method to cut out the remaining part of a word (excluding the first letter):

const word = "freecodecamp"

const remainingLetters = word.substring(1)
// reecodecamp
Comment

slice string javascript

let str = "Learning to code";

// slice from index 2 to end
let str1 = str.slice(2);
console.log(str1);

// slice from index 1 to index 8
let str2 = str.slice(1, 8);
console.log(str2);

// slice from index 5 to index (str.length - 3)
let str3 = str.slice(5, -3);
console.log(str3);

// slice from index 100 to end (returns '')
let str4 = str.slice(100);
console.log(str4);

// slice from index 0 to end of string
let str5 = str.slice(0);
console.log(str5);
Comment

javascript string slice

let x = ["a", "b", "c", "d", "e", "f"];

console.log(Array.prototype.slice.call("abcdefg"))
/*[ 'a', 'b', 'c', 'd', 'e', 'f', 'g' ]*/
/*slice can turn a string into an array with its letters as elements*/
Comment

PREVIOUS NEXT
Code Example
Javascript :: placeholder in angular 9 select 
Javascript :: dynamic route vue 
Javascript :: jquery insert after next element 
Javascript :: sequelize order with include 
Javascript :: angularjs round to 2 decimal places input 
Javascript :: angular pipe to capitalize first letter 
Javascript :: document.getElementById(...).getContext is not a function 
Javascript :: read excel file through nodejs 
Javascript :: javascript response redirect 
Javascript :: saving text in javascript 
Javascript :: bun create react app 
Javascript :: js click on button 
Javascript :: var vs let js 
Javascript :: Navigator.pushReplacementNamed parameters 
Javascript :: testing library react hooks 
Javascript :: electron hide devtools 
Javascript :: how to calculate the time complexity of a recursive function 
Javascript :: js remove value input 
Javascript :: how to read xml element in xml2js 
Javascript :: chalk js 
Javascript :: js localstorage add text 
Javascript :: forming an object with reduce 
Javascript :: jquery sibling 
Javascript :: before page load javascript 
Javascript :: promisify 
Javascript :: file upload in jquery 
Javascript :: round number 2 decimals javascript 
Javascript :: find highest value in array javascript 
Javascript :: how set default value for react-select 
Javascript :: inc a value mongoose 
ADD CONTENT
Topic
Content
Source link
Name
6+6 =