aboutsummaryrefslogtreecommitdiff
path: root/files/ja/web/api/node/lastchild/index.md
blob: 9e9d3862747ccaf42206012ed68c17cffcf0613d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
---
title: Node.lastChild
slug: Web/API/Node/lastChild
tags:
  - プロパティ
  - リファレンス
  - 読み取り専用
browser-compat: api.Node.lastChild
translation_of: Web/API/Node/lastChild
---
{{APIRef("DOM")}}

**`lastChild`** は {{domxref("Node")}} インターフェイスの読み取り専用プロパティで、このノードの最後の子ノードを返します。
親ノードが要素であった場合、子ノードはふつう、要素ノード、テキストノード、コメントノードの何れかです。
子要素がない場合は `null` を返します。

## Value

このノードの最後の子である {{domxref("Node")}}、または子ノードがなければ `null` です。

## 例

```js
const tr = document.getElementById("row1");
const corner_td = tr.lastChild;
```

## 仕様書

{{Specifications}}

## ブラウザーの互換性

{{Compat}}

## 関連情報

- {{domxref("Node.firstChild")}}
- {{domxref("Element.lastElementChild")}}