# Trouble with with() (:

**URL:** https://forum.kirupa.com/t/trouble-with-with/316494
**Category:** Uncategorized
**Created:** [November 23, 2010, 2:09pm UTC](https://forum.kirupa.com/t/trouble-with-with/316494 "2010-11-23T14:09:20Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![sasxa](https://avatars.discourse-cdn.com/v4/letter/s/da6949/32.png) [@sasxa](https://forum.kirupa.com/u/sasxa)
#### Post date: [November 23, 2010, 2:09pm UTC](https://forum.kirupa.com/t/trouble-with-with/316494/1 "2010-11-23T14:09:20Z")

</div>

What’s wrong with this code? It doesn’t add any properties to object…

```auto

[LEFT]**[SIZE=2][COLOR=#0033ff][SIZE=2][COLOR=#0033ff]public [/COLOR][/SIZE][/COLOR][/SIZE]****[SIZE=2][COLOR=#0033ff][SIZE=2][COLOR=#0033ff]static [/COLOR][/SIZE][/COLOR][/SIZE]****[SIZE=2][COLOR=#339966][SIZE=2][COLOR=#339966]function[/COLOR][/SIZE][/COLOR][/SIZE]**[SIZE=2] Default():Object {[/SIZE]
[SIZE=2][COLOR=#6699cc][SIZE=2][COLOR=#6699cc][COLOR=#000000] [/COLOR] **var** [/COLOR][/SIZE][/COLOR][/SIZE][SIZE=2] object:Object = [/SIZE]**[SIZE=2][COLOR=#0033ff][SIZE=2][COLOR=#0033ff]new[/COLOR][/SIZE][/COLOR][/SIZE]**[SIZE=2] Object();[/SIZE]
[SIZE=2][COLOR=#0033ff][SIZE=2][COLOR=#0033ff][COLOR=#000000] [/COLOR] **with** [/COLOR][/SIZE][/COLOR][/SIZE][SIZE=2] (object) {[/SIZE]
[SIZE=2] a = [/SIZE]**[SIZE=2][COLOR=#0033ff][SIZE=2][COLOR=#0033ff]false[/COLOR][/SIZE][/COLOR][/SIZE]**[SIZE=2]; [/SIZE]
[SIZE=2][COLOR=#6699cc][COLOR=black] b[/COLOR] [/COLOR]= [/SIZE]**[SIZE=2][COLOR=#0033ff][SIZE=2][COLOR=#0033ff]false[/COLOR][/SIZE][/COLOR][/SIZE]**[SIZE=2];[/SIZE]
[SIZE=2] c = [/SIZE]**[SIZE=2][COLOR=#0033ff][SIZE=2][COLOR=#0033ff]false[/COLOR][/SIZE][/COLOR][/SIZE]**[SIZE=2];[/SIZE]
[SIZE=2][COLOR=black] d[/COLOR] = [/SIZE]**[SIZE=2][COLOR=#0033ff][SIZE=2][COLOR=#0033ff]null[/COLOR][/SIZE][/COLOR][/SIZE]**[SIZE=2];[/SIZE]
[SIZE=2] }[/SIZE]
[SIZE=2][COLOR=#0033ff][SIZE=2][COLOR=#0033ff][COLOR=#000000] [/COLOR] **return** [/COLOR][/SIZE][/COLOR][/SIZE][SIZE=2] object;[/SIZE]
[SIZE=2]}[/SIZE][/LEFT]

```
