# JSTotD: isFrozen results

**URL:** https://forum.kirupa.com/t/jstotd-isfrozen-results/642769
**Category:** web dev
**Created:** [May 14, 2020, 11:20pm UTC](https://forum.kirupa.com/t/jstotd-isfrozen-results/642769 "2020-05-14T23:20:46Z")
**Posts on this page:** 3
**Page:** 1

<div class="post-metadata">

### Author: ![REB\_412](https://yyz1.discourse-cdn.com/flex011/user_avatar/forum.kirupa.com/reb_412/32/9233_2.png) [@REB\_412](https://forum.kirupa.com/u/REB_412)
#### Post date: [May 14, 2020, 11:20pm UTC](https://forum.kirupa.com/t/jstotd-isfrozen-results/642769/1 "2020-05-14T23:20:46Z")

</div>

Re: [Freezing Objects](http://forum.kirupa.com/t/javascript-tip-of-the-day-freezing-objects/641803/107)

The example that you give:  
let obj = {};  
console.log(Object.isFrozen(obj)); // true  
Object.freeze(obj);  
console.log(Object.isFrozen(obj)); // false  
does not seem right. I tried this in the console of the latest version of Chrome it reports completely different results. The first one is false and the second one is true which is what you would expect.

---

<div class="post-metadata">

### Author: ![senocular](https://yyz1.discourse-cdn.com/flex011/user_avatar/forum.kirupa.com/senocular/32/7217_2.png) [@senocular](https://forum.kirupa.com/u/senocular)
#### Post date: [June 8, 2020, 11:17pm UTC](https://forum.kirupa.com/t/jstotd-isfrozen-results/642769/2 "2020-06-08T23:17:48Z")

</div>

2 posts were merged into an existing topic: [JS Tip of the Day: Freezing Objects](https://forum.kirupa.com/t/js-tip-of-the-day-freezing-objects/643092)

---

<div class="post-metadata">

### Author: ![senocular](https://yyz1.discourse-cdn.com/flex011/user_avatar/forum.kirupa.com/senocular/32/7217_2.png) [@senocular](https://forum.kirupa.com/u/senocular)
#### Post date: [June 8, 2020, 11:17pm UTC](https://forum.kirupa.com/t/jstotd-isfrozen-results/642769/3 "2020-06-08T23:17:48Z")

</div>


