본문 바로가기
frontend/JavaScript

[JavaScript] substring() 문자열 앞, 뒤 자르기

by 신림쥐 2023. 12. 27.
728x90
반응형

앞에서 자르기

const str = "helloworld";

console.log(str.substring(0)) // 'helloworld'
console.log(str.substring(0, 0)) // ''
console.log(str.substring(0, 4)) // 'hello'
console.log(str.substring(0, str.length)) // 'helloworld'

 

 

뒤에서 자르기

const str = "helloworld";

console.log(str.substring(str.length)) // ''
console.log(str.substring(str.length-1)) // 'd'
console.log(str.substring(str.length-5)) // 'world'
728x90
반응형