# App Lab bug that really needs to get fixed

**URL:** https://forum.code.org/t/app-lab-bug-that-really-needs-to-get-fixed/33847
**Category:** Coding and Debugging Help
**Created:** [December 7, 2020, 3:50pm UTC](https://forum.code.org/t/app-lab-bug-that-really-needs-to-get-fixed/33847 "2020-12-07T15:50:58Z")
**Posts on this page:** 2
**Page:** 1

<div class="post-metadata">

### Author: ![jdonwells](https://sea2.discourse-cdn.com/flex016/user_avatar/forum.code.org/jdonwells/32/7900_2.png) [@jdonwells](https://forum.code.org/u/jdonwells)
#### Post date: [December 7, 2020, 3:50pm UTC](https://forum.code.org/t/app-lab-bug-that-really-needs-to-get-fixed/33847/1 "2020-12-07T15:50:58Z")

</div>

I opened a bug for this but the bug still exists. I wouldn’t bother you if I didn’t think it was important to get some resources on it.

There are some variable names that the lint program thinks are defined in some outer context. So when you try to define them you get a warning in the form of a yellow triangle.

![Screenshot 2020-12-07 at 10.18.12 AM](https://us1.discourse-cdn.com/flex016/uploads/codeorgforum/original/2X/3/303a2d4d59b0c6d4d04530acacfb17521e582613.png)

The warning is _Redifinition of_…

When you try to reference one of them you get another yellow triangle:

![Screenshot 2020-12-07 at 10.18.35 AM](https://us1.discourse-cdn.com/flex016/uploads/codeorgforum/original/2X/b/bce94c7183883fe7d404227f5f78d39d61319774.png)

The warning is _Read only._

As you can imagine this is very confusing to the students. It wouldn’t be a high priority in my opinion if it wasn’t on such ubiquitous variable names such as name, speed, and location.

Of the three `speed` seems to be defined as a function in `window` while `name` and `location` are undefined in `window`, but cause a warning anyway.

This is only a warning from the lint program so it doesn’t affect how it runs.

My students and I are using Chrome OS 86 with the Chrome browser. You could test this in other environments to see what happens or if it is just us.

---

<div class="post-metadata">

### Author: ![michael\_hobson](https://sea2.discourse-cdn.com/flex016/user_avatar/forum.code.org/michael_hobson/32/4191_2.png) [@michael\_hobson](https://forum.code.org/u/michael_hobson)
#### Post date: [December 7, 2020, 4:34pm UTC](https://forum.code.org/t/app-lab-bug-that-really-needs-to-get-fixed/33847/2 "2020-12-07T16:34:47Z")

</div>

I agree that students definitely encounter this, and it throws them off. I use it as a teaching moment, that they should always be looking out for possible reserved words.
