Posted inJavascript 文字列が特定の文字で開始および終了するかどうかを確認するJavaScriptプログラム Posted by By admin January 24, 2021 例1:組み込みメソッドを使用して文字列をチェックする // program to check if a string starts with 'S' and ends with 'G'…
Posted inJavascript オブジェクトからプロパティを削除するJavaScriptプログラム Posted by By admin January 23, 2021 オブジェクトはで書かれています キー/値 ペア。 ザ・ キー/値 ペアはプロパティと呼ばれます。 例えば、 const student = { name: 'John', age: 22…
Posted inJavascript 文字列内の母音の数を数えるJavaScriptプログラム Posted by By admin January 23, 2021 5文字 a、e、i、o そして u 母音と呼ばれます。 これらを除く他のすべてのアルファベット 5 母音は子音と呼ばれます。 例1:正規表現を使用して母音の数を数える // program to count the number…
Posted inJavascript 文字列の最初の文字を大文字に変換するJavaScriptプログラム Posted by By admin January 23, 2021 例1:最初の文字を大文字に変換する // program to convert first letter of a string to uppercase function capitalizeFirstLetter(str) {…
Posted inJavascript 文字列内の文字の出現回数をチェックするJavaScriptプログラム Posted by By admin January 23, 2021 'の発生数を確認するとo ' 文字列内 '学校'、結果は 2。 例1:forループを使用して文字の出現を確認する // program to check the number of occurrence of…
Posted inJavascript さまざまな方法でオブジェクトを作成するJavaScriptプログラム Posted by By admin January 23, 2021 オブジェクトは、次の3つの方法で作成できます。 オブジェクトリテラルの使用 オブジェクトのインスタンスを直接作成する コンストラクター関数を使用する 例1:オブジェクトリテラルの使用 // program to create JavaScript object using object literal const…
Posted inJavascript 文字列を逆にするJavaScriptプログラム Posted by By admin January 23, 2021 例1:forループを使用して文字列を逆にする // program to reverse a string function reverseString(str) { // empty string let newString…
Posted inJavascript 文字列の文字を置き換えるJavaScriptプログラム Posted by By admin January 23, 2021 例:文字列内の文字の最初の出現を置き換える // program to replace a character of a string const string = 'Mr Red…
Posted inJavascript 単語をアルファベット順に並べ替えるJavaScriptプログラム Posted by By admin January 23, 2021 例:単語をアルファベット順に並べ替える // program to sort words in alphabetical order // take input const string =…
Posted inJavascript 文字列が回文であるかどうかをチェックするJavaScriptプログラム Posted by By admin January 23, 2021 文字列は、前方または後方から同じように読み取られた場合、回文です。 例えば、 パパ 前方または後方から同じものを読み取ります。 だから言葉 パパ 回文です。 同様に、 マダム 回文でもあります。 例1:forループを使用して回文を確認する // program to check…