Love beautiful code? We do too.
Phương thức String slice() trong JavaScript trích (extract) một khu vực của một chuỗi và trả về một chuỗi mới.
Cú pháp cho phương thức slice() là:
string.slice( beginslice [, endSlice] );
Chi tiết về tham số
Trả về giá trị
<html>
<head>
<title>JavaScript String slice() Method</title>
</head>
<body>
<script type="text/javascript">
var str = "Apples are round, and apples are juicy.";
var sliced = str.slice(3, -2);
document.write( sliced );
</script>
</body>
</html>
Kết quả
les are round, and apples are juic
Hoclaptrinh.vn © 2017
From Coder With
Unpublished comment
Viết câu trả lời