Simple
Sand
Samples
プログラミング言語サンプル集
TOPへ
Hello World!(各言語のTOP)
(計算)商と余りを求める
(計算)算術まるめ四捨五入
(計算)小数点以下切り捨て
(計算)小数点以下切り上げ
(計算)べき乗を計算する
(変換)10進数->16進数
(変換)10進数->8進数
(変換)10進数->2進数
(変換)16進数->10進数
(変換)8進数->10進数
(変換)2進数->10進数
(文字列)文字列を連結する
(文字列)小文字->大文字 変換
(文字列)大文字->小文字 変換
(文字列)文字列の長さを得る
(文字列)文字列を左右反転
(文字列)10進文字列->数値 変換
(文字列)文字列の一部を取り出す
(文字列)一文字毎に分割する
(連想配列)連想配列(辞書)を使う
(連想配列)空にする(初期化する)
(テキスト)全行左右反転
(日付時刻)今日の日付を得る
(日付時刻)現在の時刻を得る
(日付時刻)日付と時刻を得る
乱数を使う

説明のないとってもシンプルなサンプルプログラム集
COBOL awk C言語 D言語 GO言語 Lua Vim
bash Perl Gauche Clojure CLISP EmacsLisp VimScript
tcsh Ruby Groovy Java C# VBScript JavaScript
Io言語 Python Erlang Scala VB.NET Excel/VBA PHP
Tcl Haskell OCaml PowerShell Windows Unix/Linux

JavaScript > 日時を得る

    date.js

1
2
3
4
5
6
7
8
9
10
11
//youbi = new Array("日","月","火","水","木","金","土");
now = new Date();
//day = youbi[now.getDay()] + "曜日";
yyyy = now.getFullYear();
mm = now.getMonth() + 1;
dd = now.getDate();
hh = now.getHours();
mm = now.getMinutes();
ss = now.getSeconds();
print( yyyy+"-"+mm+"-"+dd +" "+ hh+":"+mm+":"+ss);
$ js date.js
2003-03-21 11:20:48
$

  * 確認環境 Debian Linux(Wheezy)