UNPKG
postman
Version:
latest (0.2.0)
0.2.0
0.1.0
The Postman will help deliver messages around your application
postman
/
node_modules
/
qunit
/
deps
/
jscoverage
/
tests
/
javascript
/
javascript-getter-setter.js
20 lines
(18 loc)
•
215 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
var
o = { _x:
123
,
get
x
()
{
return
this
._x; },
set
x
(
value
)
{
this
._x =
value
; } }; o = { _x:
123
,
get
x
get_x
()
{
return
this
._x; },
set
x
set_x
(
value
)
{
this
._x =
value
; } };