Posted inJavascript 日付をフォーマットするJavaScriptプログラム Posted by By admin January 25, 2021 例1:日付をフォーマットする // program to format the date // get current date let currentDate = new…
Posted inJavascript うるう年をチェックするJavaScriptプログラム Posted by By admin January 25, 2021 次の条件が満たされている場合、1年はうるう年です。 年はの倍数です 400。 年はの倍数です 4 の倍数ではありません 100。 例1:if ... elseを使用してうるう年を確認する // program to check leap…
Posted inJavascript 日付と時刻を表示するJavaScriptプログラム Posted by By admin January 25, 2021 例:日付と時刻を表示する // program to display the date and time // get date and time const…
Posted inJavascript すべての改行を置き換えるJavaScriptプログラム Posted by By admin January 25, 2021 例1:正規表現を使用してすべての改行を置き換える // program to replace all line breaks in a string with <br> const string…
Posted inJavascript 文字列内の文字のすべてのインスタンスを置き換えるJavaScriptプログラム Posted by By admin January 25, 2021 例1:正規表現を使用して文字のすべてのインスタンスを置き換える // program to replace all instances of a character in a string const string…
Posted inJavascript 文字列をBase64にエンコードするJavaScriptプログラム Posted by By admin January 25, 2021 Base64 は、バイナリデータを基数64表現に変換することにより、ASCII文字列形式でバイナリデータを表すバイナリからテキストへのエンコードスキームのグループです。 例1:btoa()を使用して文字列をBase64にエンコードする // program to encode a string to Base64 // defining the string…
Posted inJavascript 大文字と小文字を区別しない文字列比較を実行するJavaScriptプログラム Posted by By admin January 25, 2021 例1:toUpperCase()の使用 // program to perform case insensitive string comparison const string1 = 'JavaScript Program'; const…
Posted inJavascript 文字列に部分文字列が含まれているかどうかを確認するJavaScriptプログラム Posted by By admin January 25, 2021 例1:includes()を使用して文字列をチェックする // program to check if a string contains a substring // take input const…
Posted inJavascript オブジェクトを文字列に変換するJavaScriptプログラム Posted by By admin January 25, 2021 例1:JSON.stringify()を使用してオブジェクトを文字列に変換する // program to convert an object to a string const person = { name:…
Posted inJavascript 文字列をトリミングするJavaScriptプログラム Posted by By admin January 25, 2021 例1:文字列をトリミングする // program to trim a string const string = ' Hello World '; const…