文字列をバイナリ文字列に変換する-JavaScript
小文字の文字列を受け取り、[a、m]の間のすべての要素が0で表され、[n、z]の間のすべての要素が1で表される新しい文字列を返すJavaScript関数を作成する必要があります。
例
以下はコードです-
const str = 'Hello worlld how are you'; const stringToBinary = (str = '') => { const s = str.toLowerCase(); let res = ''; for(let i = 0; i < s.length; i++){ // for special characters if(s[i].toLowerCase() === s[i].toUpperCase()){ res += s[i]; continue; }; if(s[i] > 'm'){ res += 1; }else{ res += 0; }; }; return res; }; console.log(stringToBinary(str));
出力
以下はコンソールの出力です-
00001 111000 011 010 111
-
JavaScript文字列をブール値に変換します
JavaScriptで文字列をブール値に変換するためのコードは次のとおりです- 例 <!DOCTYPE html> <html> <head> <style> body { font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif; } </style> </head> <body> <h1>Converting strin
-
配列をJavaScriptで設定するように変換する
以下は、JavaScriptで配列を設定に変換するためのコードです- 例 <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <title>Document</title> <style>