Javascript - Đổi chuỗi thành chuỗi hoa

Viết hàm JS để đổi chuỗi thành chuỗi hoa

Ví dụ:

JavaScript: Capitalize each word in the string

Mã nguồn:

<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width">
  <title>JavaScript program to convert the letters of a given string  in alphabetical order.</title>
</head>
<script>
	function capitalizeWords(str)
	{
	 return str.replace(/\w\S*/g, function(txt){return txt.substr(0).toUpperCase();});
	}
	document.write(capitalizeWords('js string exercises'));
</script>
<body>

</body>
</html> 

Xem ví dụ

Lưu đồ thuật toán:

Flowchart: JavaScript: capitalize the each word of a string


Chatbot Tư vấn Lộ trình CNTT 🤖
Chào bạn! Tôi có thể tư vấn về các lộ trình học CNTT dựa trên roadmap.w3typing.com. Hãy chọn một từ khóa dưới đây hoặc gõ câu hỏi của bạn (ví dụ: "Frontend", "Backend", "Python", "DevOps").