So my friend codes like this (example):
local var = something
var = true
var = var
I want to know if setting a value to the same value does anything at all.
So my friend codes like this (example):
local var = something
var = true
var = var
I want to know if setting a value to the same value does anything at all.
There is no point of using var = var
since it is already the same value.
in short, it’s bad because it might affect the performance.
This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.