Computer >> 컴퓨터 >  >> 프로그램 작성 >> JavaScript

JavaScript에서 첫 번째 문자열에 공백이 있는 두 개의 문자열을 추가하는 방법은 무엇입니까?


두 문자열을 추가하려면 '+' 연산자가 필요합니다. 문자열 사이에 약간의 공백을 만들지만 첫 번째 문자열 자체에 공백이 있으면 명시적으로 공백을 할당할 필요가 없습니다.

다음 예에서는 'str1' 문자열에 공백이 있으므로 연결 만 공백이 없어도 두 문자열을 모두 추가할 수 있습니다.

예시

<html>
<body>
   <script>
      function str(str1, str2) {
         return (str1 + str2);
      }
      document.write(str("tutorix is the best ","e-learning platform"));
   </script>
</body>
</html>

출력

tutorix is the best e-learning platform

첫 번째 문자열에 공백이 없으면 아래와 같이 space(" ")를 만들고 두 문자열을 결합해야 합니다.

예시

<html>
<body>
   <script>
      function str(str1, str2) {
         return (str1 + " " + str2);
      }
      document.write(str("tutorix is the best","e-learning platform"));
   </script>
</body>
</html>

출력

tutorix is the best e-learning platform