<script language="javascript" src="./Person.js"></script>
<script language="javascript" >
//クラスへのアクセス
function sayHello()
{
const person = new Person(
{first:"太郎", last:"山田"},
new Date(1953,8-1,15));
person.sayHello();
}
function sayBirthDay()
{
const person = new Person(
{first:"太郎", last:"山田"},
new Date(1953,8-1,15));
person.sayBirthDay();
}
function sayAge()
{
const person = new Person(
{first:"太郎", last:"山田"},
new Date(1953,8-1,15));
person.sayAge();
}
</script>
</head>
<body bgcolor="azure">
<script language="javascript">
//【テスト関数】
function sayHello()
{
const person = new Person(
{first:"太郎", last:"山田"},
new Date(1953,8-1,15));
person.sayHello();
}
function sayBirthDay()
{
const person = new Person(
{first:"太郎", last:"山田"},
new Date(1953,8-1,15));
person.sayBirthDay();
}
function sayAge()
{
const person = new Person(
{first:"太郎", last:"山田"},
new Date(1953,8-1,15));
person.sayAge();
}
'② ①で定義したセルを
' 1つのセルオブジェクトに統合する。
For Each cell In cellArray
If cellUnion Is Nothing Then
'初回のみセルを設定
Set cellUnion = cell
Else
'2回目以降は、セルを統合する。
Set cellUnion = Union(cellUnion, cell)
End If