Câu 23 Trong Javascript, sau khi thực hiện đoạn mã kết quả hiển thị sẽ là gì?
let str = " Ja vas cri pt 3";
console.log(str.toUpperCase().replaceAll(" ", "").slice(0, -1));
Đáp án của bạn:
Câu 24 Trong Javascript, sau khi thực hiện đoạn mã kết quả hiển thị sẽ là gì?
let str = "CNBVNABCDBDA";
let name = "ZendVn";
let result = `${name.slice(0, -2) + str.substring(3, 5)}`;
console.log(result);
Đáp án của bạn:
Câu 25 Trong Javascript, sau khi thực hiện đoạn mã kết quả hiển thị sẽ là gì?
let str = "Hello , Welcome ZendVn";
const regex = /[^\w\s]/g;
let result = str[str.search(regex)];
console.log(result);
Đáp án của bạn:
Câu 26 Trong Javascript, sau khi thực hiện đoạn mã kết quả hiển thị sẽ là gì?
let api = 'http:/api.com/api/1/href="zendVnImg"';
let result = api.split("/");
console.log(result[2] + result[4]);
Đáp án của bạn:
Câu 27 Trong Javascript, sau khi thực hiện đoạn mã kết quả hiển thị sẽ là gì?
let arr = ["nodejs", "frontend", "react"];
let html = "<a>";
for (const val of arr) {
html += `${val}`;
}
html += "</a>";
console.log(html);
Đáp án của bạn: