DEV Community

Zell Liew πŸ€—
Zell Liew πŸ€—

Posted on • Originally published at zellwk.com

Stop using big words and industry jargons (and what to do instead)

Let's say you want to teach a person something. Why does the person not understand what you're saying?

One of the main reasons is because we like to use big words and industry jargons. These jargons may mean something to us, but they mean nothing to the people we're trying to teach.

The next time you try to teach programming, watch out for the words you use.

Three types of big words

Jargons can be divided into three categories:

  1. Those that can be explained in a few words
  2. Those that cannot be explained with simple words
  3. Those that can mean different things in different contexts.

When you teach, you should always watch out for these three types of words.

Jargons that can be explained in a few words.

If the jargon can be explained in a few words, you want to use those words instead of the jargon.

Interoperability is one example of a such a word.

It sounds scary and complicated, but it can be explained in a few simple words.

If you searched for the meaning of interoperability, you'll come across definitions like these:

From Wikipedia: "Interoperability is a characteristic of a product or system, whose interfaces are completely understood, to work with other products or systems, at present or in the future, in either implementation or access, without any restrictions."

From Dictionary.com: "Interoperability is the ability to share data between different computer systems, especially on different machines."

If we put it in simple terms, "interoperability" means the "ability to share data".

See how it makes the language barrier much lower?

If you can replace such jargons with simple words, why do you stick to the difficult word?

Jargons that mean different things in different contexts

Some jargons have different meanings when they're used in different contexts.

One example of such a jargon is encapsulation.

To encapsulate something means to enclose that thing with something else. If you wrap a potato with a cloth, you can say the cloth encapsulates the potato.

Developers love the word encapsulation. They use it all the time.

The first way is to wrap variables and other code inside a function. In this case, the function encapsulates the code within.

function someFunction () {
  const variableName = 'I am a variable!'
}
Enter fullscreen mode Exit fullscreen mode

The second way is to contain an object's individuality. For example, if you have a Human object, and you create two humans from the human object, these two humans should not be the same.

In this case, each object encapsulates its own data.

function Human (name) {
  this.name = name
}

const zell = new Human('Zell')
const vincy = new Human('Vincy')

zell.name === vincy.name // false
Enter fullscreen mode Exit fullscreen mode

The third way is for information hiding. In JavaScript, we can create private variables. These private variables are enclosed by the object.

In this case, the object encapsulates the private variable. You cannot access the private variable. In this case, encapsulation is used to mean something slightly different from the second case.

function Human () {
  const privateVariable = 'private'
  this.publicVariable = 'public'
}
Enter fullscreen mode Exit fullscreen mode

So what do you understand by Encapsulation?

You can't be sure.

There should be no ambiguity when you communicate. If there is ambiguity, communication breaks down, and students don't learn.

It is best to ditch the jargon if the jargon means different things in different contexts.

Jargons that cannot be explained with simple words

Some jargons cannot be explained with simple words. These jargons are often used to talk about abstract concepts, which is why simple words may not be enough.

One example of such a word is "mutation".

Mutation comes from the word mutate. To mutate means to change in form or nature. In JavaScript, mutation happens underneath the hood without you noticing.

In this case, change is not enough to explain mutation. It lacks depth and detail. Plus, change is still too abstract.

You feel that a concept is abstract because you cannot imagine it. You cannot see, hear, feel, touch, or taste it. To make an abstract concrete, we need to appeal to a human's five senses.

To explain an abstract concept, you can use analogies. When you use analogies, you can describe an object or a scenario in a way where people can see, hear, or feel what you mean.

For example, I used X-men as my analogy when I explained mutation.

I asked students to imagine a friend growing fur and turning blue in front of their eyes. Anyone can imagine what it means to grow fur and turn blue, even if they don't know who Beast is.

If you want to expand the analogy to cater to more people, you can appeal to more senses. For example, to get blind people to imagine mutation, you can also tell them to imagine their friend growled like a beast.

The key here is a change that goes undetected. Nobody knows whether a person is a mutant until they show their powers. On the same front, nobody knows that a JavaScript object has changed until it, well, changed.

I emphasized this point to draw a link back to mutation in JavaScript.

Mutation becomes a concrete once the link gets established. When I say mutation, students who read the article can picture their friend turning blue, growing fur, and growling like a beast.

Once you turn an abstract jargon into a concrete concept, you can use the jargon as normal. Students will understand what you mean.

I wrote an article about creating good analogies if you're interested in learning this skill.

Wrapping up

Pay attention to the words you use when you teach programming. If you use difficult words that don't mean anything to your student, they won't be able to get what you mean.

Replace difficult words with words that are simpler and easier to understand if you can.

Avoid using jargons that can mean different things in different contexts. These jargons make things ambiguous and confusing.

Finally, use analogies to turn abstract concepts into concrete concepts.


Thanks for reading. This article was originally posted on my blog. Sign up for my newsletter if you want more articles to help you become a better frontend developer.

Top comments (4)

Collapse
 
rafalpienkowski profile image
Rafal Pienkowski

An interesting post. Some time ago, I was against industry jargons, but I've changed my mind. Especially when we're talking about the first two categories:

  • Those that can be explained in a few words

  • Those that cannot be explained with simple words

Why I've changed my mind? The answer is simple. Industry jargons help with communication with another technical person.
In my opinion, it's simpler to say:

"Tom, I think you should use here repository pattern."

or

"Alice, could you use some orchestration."

Instead of describing the idea more in-depth. Of course, there is a high entry threshold for newcomers. Explaining industry jargons should be part of the company's culture.
I think that is great that you're explaining students such tricky words. In my opinion, you should use jargon and explain it. That will prepare them, and they won't be surprised when someone in their the environment will use jargon.

Cheers.

Collapse
 
zellwk profile image
Zell Liew πŸ€—

I would teach the jargons, but the moral of the post is to NOT use them when the other person don't know what you're talking about...

Collapse
 
rafalpienkowski profile image
Rafal Pienkowski

Ok. I missed that.

Collapse
 
tnypxl profile image
tnypxl

This really does depend on the individual being taught. I always validate the information I've just shared by asking if there was anything that confused them or they may have missed. Maybe I just suck at explaining things, but this always helps them digest the info a little better and it helps me improve the clarity at which I'm giving it. Not to mention, it helps build empathy between yourself and the person you're teaching.

Teaching is a feedback loop between two individuals and both have to work at keeping the loop going. As a student, I can usually tell when the teacher has just decided to abandon the loop and just get through the material. Teaching is mentally exhausting if it doesn't come naturally to you.